-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSTRUCTURE.txt
65 lines (53 loc) · 1.39 KB
/
STRUCTURE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
== Description of Contents
The directory structure of the cloud-ui ruby gem:
|-- app
| |-- assets_src
| | |-- images
| | |-- javascripts
| | | |-- extensions
| | | `-- widgets
| | |-- stylesheets
| | | |-- functions
| | | |-- utilities
| | | `-- widgets
| | `-- templates
| |-- controllers
| |-- helpers
| `-- views
| `-- layouts
|-- demo
| |-- images
| |-- javascripts
| `-- stylesheets
|-- lib
| |-- clound-ui
| `-- tasks
|-- test
| |-- lib
| `-- support
`-- vendor
`-- assets
|-- javascripts
| |-- jquery
| `-- native
`-- stylesheets
app
Holds example rails code on which to run tests.
app/assets_src
Contains images, stylesheets and javascript used in the tests.
app/assets_src/javascripts
Includes example backbone app code.
app/assets_src/templates
Templates used to create widgets dynamically.
boilerplate?
Contains minimal resources necessary to create a new site.
demo
Contains a non-rails demo/documentation site non-minified versions of all assets.
lib/cloud-ui
Contains the code uniquely distributed through this gem.
lib/tasks
Contains the rake tasks included with this gem.
test/lib
Contains the tests for features of this gem.
vendor
Contains third party code distributed through this gem.