control_center 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. data/app/assets/stylesheets/base.css +95 -0
  2. data/app/assets/stylesheets/codemirror.css +67 -0
  3. data/app/assets/stylesheets/control_center.css +289 -0
  4. data/app/assets/stylesheets/themes/amro/style.css +364 -0
  5. data/app/assets/stylesheets/themes/bec-green/style.css +290 -0
  6. data/app/assets/stylesheets/themes/bec/style.css +301 -0
  7. data/app/assets/stylesheets/themes/blue/style.css +287 -0
  8. data/app/assets/stylesheets/themes/default/style.css +373 -0
  9. data/app/assets/stylesheets/themes/djime-cerulean/style.css +305 -0
  10. data/app/assets/stylesheets/themes/kathleene/style.css +279 -0
  11. data/app/assets/stylesheets/themes/olive/style.css +345 -0
  12. data/app/assets/stylesheets/themes/orange/style.css +269 -0
  13. data/app/assets/stylesheets/themes/reidb-greenish/style.css +302 -0
  14. data/app/assets/stylesheets/themes/ruby/style.css +281 -0
  15. data/app/assets/stylesheets/themes/warehouse/style.css +391 -0
  16. data/app/views/application/_header_links.html.erb +2 -0
  17. data/app/views/application/_sidebar.html.haml +15 -0
  18. data/app/views/application/_sub_tabs.html.erb +0 -0
  19. data/app/views/application/_tabs.html.erb +3 -0
  20. data/app/views/layouts/control_center.html.erb +73 -0
  21. data/app/views/layouts/padrino.html.haml +30 -0
  22. data/public/stylesheets/base.css +95 -0
  23. data/public/stylesheets/codemirror.css +67 -0
  24. data/public/stylesheets/control_center.css +289 -0
  25. data/public/stylesheets/themes/amro/style.css +364 -0
  26. data/public/stylesheets/themes/bec-green/style.css +290 -0
  27. data/public/stylesheets/themes/bec/style.css +301 -0
  28. data/public/stylesheets/themes/blue/style.css +287 -0
  29. data/public/stylesheets/themes/default/style.css +373 -0
  30. data/public/stylesheets/themes/djime-cerulean/style.css +305 -0
  31. data/public/stylesheets/themes/kathleene/style.css +279 -0
  32. data/public/stylesheets/themes/olive/style.css +345 -0
  33. data/public/stylesheets/themes/orange/style.css +269 -0
  34. data/public/stylesheets/themes/reidb-greenish/style.css +302 -0
  35. data/public/stylesheets/themes/ruby/style.css +281 -0
  36. data/public/stylesheets/themes/warehouse/style.css +391 -0
  37. metadata +44 -5
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: control_center
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alan Johnson
14
+ - Craig McNamara
14
15
  autorequire:
15
16
  bindir: bin
16
17
  cert_chain: []
@@ -20,7 +21,9 @@ default_executable:
20
21
  dependencies: []
21
22
 
22
23
  description: Control Center is a Rails plugin that helps in quickly developing interfaces for website administration and application prototyping.
23
- email: alan@commondream.net
24
+ email:
25
+ - alan@commondream.net
26
+ - craig.mcnamara@gmail.com
24
27
  executables: []
25
28
 
26
29
  extensions: []
@@ -28,6 +31,27 @@ extensions: []
28
31
  extra_rdoc_files: []
29
32
 
30
33
  files:
34
+ - app/assets/stylesheets/base.css
35
+ - app/assets/stylesheets/codemirror.css
36
+ - app/assets/stylesheets/control_center.css
37
+ - app/assets/stylesheets/themes/amro/style.css
38
+ - app/assets/stylesheets/themes/bec/style.css
39
+ - app/assets/stylesheets/themes/bec-green/style.css
40
+ - app/assets/stylesheets/themes/blue/style.css
41
+ - app/assets/stylesheets/themes/default/style.css
42
+ - app/assets/stylesheets/themes/djime-cerulean/style.css
43
+ - app/assets/stylesheets/themes/kathleene/style.css
44
+ - app/assets/stylesheets/themes/olive/style.css
45
+ - app/assets/stylesheets/themes/orange/style.css
46
+ - app/assets/stylesheets/themes/reidb-greenish/style.css
47
+ - app/assets/stylesheets/themes/ruby/style.css
48
+ - app/assets/stylesheets/themes/warehouse/style.css
49
+ - app/views/application/_header_links.html.erb
50
+ - app/views/application/_sidebar.html.haml
51
+ - app/views/application/_sub_tabs.html.erb
52
+ - app/views/application/_tabs.html.erb
53
+ - app/views/layouts/control_center.html.erb
54
+ - app/views/layouts/padrino.html.haml
31
55
  - lib/control_center/engine.rb
32
56
  - lib/control_center/helpers/layout_helper.rb
33
57
  - lib/control_center/helpers/tab_builder.rb
@@ -36,6 +60,21 @@ files:
36
60
  - rails/init.rb
37
61
  - generators/control_center/control_center_generator.rb
38
62
  - generators/control_center/templates/control_center.rb
63
+ - public/stylesheets/base.css
64
+ - public/stylesheets/codemirror.css
65
+ - public/stylesheets/control_center.css
66
+ - public/stylesheets/themes/amro/style.css
67
+ - public/stylesheets/themes/bec/style.css
68
+ - public/stylesheets/themes/bec-green/style.css
69
+ - public/stylesheets/themes/blue/style.css
70
+ - public/stylesheets/themes/default/style.css
71
+ - public/stylesheets/themes/djime-cerulean/style.css
72
+ - public/stylesheets/themes/kathleene/style.css
73
+ - public/stylesheets/themes/olive/style.css
74
+ - public/stylesheets/themes/orange/style.css
75
+ - public/stylesheets/themes/reidb-greenish/style.css
76
+ - public/stylesheets/themes/ruby/style.css
77
+ - public/stylesheets/themes/warehouse/style.css
39
78
  - test/rails/app/controllers/application.rb
40
79
  - test/rails/app/controllers/application_controller.rb
41
80
  - test/rails/app/controllers/test_controller.rb
@@ -108,7 +147,7 @@ files:
108
147
  - README.markdown
109
148
  - MIT-LICENSE
110
149
  has_rdoc: true
111
- homepage: http://www.commondream.net
150
+ homepage: https://github.com/craigmcnamara/control_center
112
151
  licenses: []
113
152
 
114
153
  post_install_message: