control_center 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.markdown +188 -0
- data/generators/control_center/control_center_generator.rb +26 -0
- data/generators/control_center/templates/control_center.rb +14 -0
- data/lib/control_center.rb +20 -0
- data/lib/control_center/engine.rb +18 -0
- data/lib/control_center/helpers/layout_helper.rb +65 -0
- data/lib/control_center/helpers/tab_builder.rb +14 -0
- data/lib/tasks/control_center_tasks.rake +4 -0
- data/rails/init.rb +7 -0
- data/test/rails/README +2 -0
- data/test/rails/Rakefile +10 -0
- data/test/rails/app/controllers/application.rb +15 -0
- data/test/rails/app/controllers/application_controller.rb +15 -0
- data/test/rails/app/controllers/test_controller.rb +3 -0
- data/test/rails/app/helpers/application_helper.rb +3 -0
- data/test/rails/app/helpers/test_helper.rb +2 -0
- data/test/rails/app/views/layouts/_header_links.html.erb +2 -0
- data/test/rails/app/views/layouts/_tabs.html.erb +3 -0
- data/test/rails/app/views/layouts/control_center.html.erb +64 -0
- data/test/rails/app/views/test/forms.html.erb +106 -0
- data/test/rails/app/views/test/index.html.erb +28 -0
- data/test/rails/app/views/test/no_sidebar.html.erb +17 -0
- data/test/rails/app/views/test/pagination.html.erb +4 -0
- data/test/rails/app/views/test/tab_override.html.erb +12 -0
- data/test/rails/app/views/test/table.html.erb +27 -0
- data/test/rails/config/boot.rb +110 -0
- data/test/rails/config/database.yml +22 -0
- data/test/rails/config/environment.rb +76 -0
- data/test/rails/config/environments/development.rb +17 -0
- data/test/rails/config/environments/production.rb +24 -0
- data/test/rails/config/environments/test.rb +22 -0
- data/test/rails/config/initializers/control_center.rb +14 -0
- data/test/rails/config/initializers/inflections.rb +10 -0
- data/test/rails/config/initializers/mime_types.rb +5 -0
- data/test/rails/config/initializers/new_rails_defaults.rb +17 -0
- data/test/rails/config/locales/en.yml +5 -0
- data/test/rails/config/routes.rb +43 -0
- data/test/rails/db/development.sqlite3 +0 -0
- data/test/rails/db/test.sqlite3 +0 -0
- data/test/rails/doc/README_FOR_APP +5 -0
- data/test/rails/lib/tasks/databaseless.rake +3 -0
- data/test/rails/log/development.log +251 -0
- data/test/rails/log/test.log +280 -0
- data/test/rails/public/404.html +30 -0
- data/test/rails/public/422.html +30 -0
- data/test/rails/public/500.html +33 -0
- data/test/rails/public/dispatch.cgi +10 -0
- data/test/rails/public/dispatch.fcgi +24 -0
- data/test/rails/public/dispatch.rb +10 -0
- data/test/rails/public/favicon.ico +0 -0
- data/test/rails/public/images/rails.png +0 -0
- data/test/rails/public/javascripts/application.js +2 -0
- data/test/rails/public/javascripts/controls.js +963 -0
- data/test/rails/public/javascripts/dragdrop.js +973 -0
- data/test/rails/public/javascripts/effects.js +1128 -0
- data/test/rails/public/javascripts/prototype.js +4320 -0
- data/test/rails/public/robots.txt +5 -0
- data/test/rails/public/stylesheets/control_center.css +289 -0
- data/test/rails/public/stylesheets/custom_css_1.css +0 -0
- data/test/rails/public/stylesheets/custom_css_2.css +0 -0
- data/test/rails/script/about +4 -0
- data/test/rails/script/console +3 -0
- data/test/rails/script/dbconsole +3 -0
- data/test/rails/script/destroy +3 -0
- data/test/rails/script/generate +3 -0
- data/test/rails/script/performance/benchmarker +3 -0
- data/test/rails/script/performance/profiler +3 -0
- data/test/rails/script/performance/request +3 -0
- data/test/rails/script/plugin +3 -0
- data/test/rails/script/process/inspector +3 -0
- data/test/rails/script/process/reaper +3 -0
- data/test/rails/script/process/spawner +3 -0
- data/test/rails/script/runner +3 -0
- data/test/rails/script/server +3 -0
- data/test/rails/test/functional/test_controller_test.rb +49 -0
- data/test/rails/test/performance/browsing_test.rb +9 -0
- data/test/rails/test/test_helper.rb +13 -0
- data/test/rails/update +6 -0
- metadata +145 -0
data/test/rails/update
ADDED
metadata
ADDED
@@ -0,0 +1,145 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: control_center
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 21
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Alan Johnson
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-12-14 00:00:00 -08:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
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
|
+
executables: []
|
25
|
+
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- lib/control_center/engine.rb
|
32
|
+
- lib/control_center/helpers/layout_helper.rb
|
33
|
+
- lib/control_center/helpers/tab_builder.rb
|
34
|
+
- lib/control_center.rb
|
35
|
+
- lib/tasks/control_center_tasks.rake
|
36
|
+
- rails/init.rb
|
37
|
+
- generators/control_center/control_center_generator.rb
|
38
|
+
- generators/control_center/templates/control_center.rb
|
39
|
+
- test/rails/app/controllers/application.rb
|
40
|
+
- test/rails/app/controllers/application_controller.rb
|
41
|
+
- test/rails/app/controllers/test_controller.rb
|
42
|
+
- test/rails/app/helpers/application_helper.rb
|
43
|
+
- test/rails/app/helpers/test_helper.rb
|
44
|
+
- test/rails/app/views/layouts/_header_links.html.erb
|
45
|
+
- test/rails/app/views/layouts/_tabs.html.erb
|
46
|
+
- test/rails/app/views/layouts/control_center.html.erb
|
47
|
+
- test/rails/app/views/test/forms.html.erb
|
48
|
+
- test/rails/app/views/test/index.html.erb
|
49
|
+
- test/rails/app/views/test/no_sidebar.html.erb
|
50
|
+
- test/rails/app/views/test/pagination.html.erb
|
51
|
+
- test/rails/app/views/test/tab_override.html.erb
|
52
|
+
- test/rails/app/views/test/table.html.erb
|
53
|
+
- test/rails/config/boot.rb
|
54
|
+
- test/rails/config/database.yml
|
55
|
+
- test/rails/config/environment.rb
|
56
|
+
- test/rails/config/environments/development.rb
|
57
|
+
- test/rails/config/environments/production.rb
|
58
|
+
- test/rails/config/environments/test.rb
|
59
|
+
- test/rails/config/initializers/control_center.rb
|
60
|
+
- test/rails/config/initializers/inflections.rb
|
61
|
+
- test/rails/config/initializers/mime_types.rb
|
62
|
+
- test/rails/config/initializers/new_rails_defaults.rb
|
63
|
+
- test/rails/config/locales/en.yml
|
64
|
+
- test/rails/config/routes.rb
|
65
|
+
- test/rails/db/development.sqlite3
|
66
|
+
- test/rails/db/test.sqlite3
|
67
|
+
- test/rails/doc/README_FOR_APP
|
68
|
+
- test/rails/lib/tasks/databaseless.rake
|
69
|
+
- test/rails/log/development.log
|
70
|
+
- test/rails/log/test.log
|
71
|
+
- test/rails/public/404.html
|
72
|
+
- test/rails/public/422.html
|
73
|
+
- test/rails/public/500.html
|
74
|
+
- test/rails/public/dispatch.cgi
|
75
|
+
- test/rails/public/dispatch.fcgi
|
76
|
+
- test/rails/public/dispatch.rb
|
77
|
+
- test/rails/public/favicon.ico
|
78
|
+
- test/rails/public/images/rails.png
|
79
|
+
- test/rails/public/javascripts/application.js
|
80
|
+
- test/rails/public/javascripts/controls.js
|
81
|
+
- test/rails/public/javascripts/dragdrop.js
|
82
|
+
- test/rails/public/javascripts/effects.js
|
83
|
+
- test/rails/public/javascripts/prototype.js
|
84
|
+
- test/rails/public/robots.txt
|
85
|
+
- test/rails/public/stylesheets/control_center.css
|
86
|
+
- test/rails/public/stylesheets/custom_css_1.css
|
87
|
+
- test/rails/public/stylesheets/custom_css_2.css
|
88
|
+
- test/rails/Rakefile
|
89
|
+
- test/rails/README
|
90
|
+
- test/rails/script/about
|
91
|
+
- test/rails/script/console
|
92
|
+
- test/rails/script/dbconsole
|
93
|
+
- test/rails/script/destroy
|
94
|
+
- test/rails/script/generate
|
95
|
+
- test/rails/script/performance/benchmarker
|
96
|
+
- test/rails/script/performance/profiler
|
97
|
+
- test/rails/script/performance/request
|
98
|
+
- test/rails/script/plugin
|
99
|
+
- test/rails/script/process/inspector
|
100
|
+
- test/rails/script/process/reaper
|
101
|
+
- test/rails/script/process/spawner
|
102
|
+
- test/rails/script/runner
|
103
|
+
- test/rails/script/server
|
104
|
+
- test/rails/test/functional/test_controller_test.rb
|
105
|
+
- test/rails/test/performance/browsing_test.rb
|
106
|
+
- test/rails/test/test_helper.rb
|
107
|
+
- test/rails/update
|
108
|
+
- README.markdown
|
109
|
+
- MIT-LICENSE
|
110
|
+
has_rdoc: true
|
111
|
+
homepage: http://www.commondream.net
|
112
|
+
licenses: []
|
113
|
+
|
114
|
+
post_install_message:
|
115
|
+
rdoc_options: []
|
116
|
+
|
117
|
+
require_paths:
|
118
|
+
- lib
|
119
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
120
|
+
none: false
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
hash: 3
|
125
|
+
segments:
|
126
|
+
- 0
|
127
|
+
version: "0"
|
128
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ">="
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
hash: 3
|
134
|
+
segments:
|
135
|
+
- 0
|
136
|
+
version: "0"
|
137
|
+
requirements: []
|
138
|
+
|
139
|
+
rubyforge_project:
|
140
|
+
rubygems_version: 1.5.3
|
141
|
+
signing_key:
|
142
|
+
specification_version: 3
|
143
|
+
summary: A Rails plugin that helps in quickly developing admin style interfaces.
|
144
|
+
test_files: []
|
145
|
+
|