shim 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/.rvmrc +34 -0
- data/Gemfile +17 -0
- data/LICENSE +22 -0
- data/MIT-LICENSE +20 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/app/assets/images/shim/.gitkeep +0 -0
- data/app/assets/javascripts/shim/application.js +15 -0
- data/app/assets/stylesheets/shim/application.css +13 -0
- data/app/controllers/shim/application_controller.rb +4 -0
- data/app/controllers/shim/pages_controller.rb +31 -0
- data/app/helpers/shim/application_helper.rb +4 -0
- data/app/views/layouts/shim/application.html.erb +14 -0
- data/bin/shim +8 -0
- data/config/routes.rb +3 -0
- data/lib/shim/cli.rb +19 -0
- data/lib/shim/engine.rb +5 -0
- data/lib/shim/version.rb +3 -0
- data/lib/shim.rb +19 -0
- data/lib/tasks/shim_tasks.rake +4 -0
- data/script/rails +8 -0
- data/shim.gemspec +25 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/.gitkeep +0 -0
- data/test/dummy/app/models/.gitkeep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/lib/assets/.gitkeep +0 -0
- data/test/dummy/log/.gitkeep +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/shim_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +206 -0
metadata
ADDED
@@ -0,0 +1,206 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: shim
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Mike Utley
|
9
|
+
- Corey Woodcox
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2012-06-11 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: thor
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ! '>='
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: '0'
|
31
|
+
- !ruby/object:Gem::Dependency
|
32
|
+
name: guard
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
35
|
+
requirements:
|
36
|
+
- - ! '>='
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
type: :runtime
|
40
|
+
prerelease: false
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rails
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.2.2
|
55
|
+
type: :runtime
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ~>
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 3.2.2
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
name: jquery-rails
|
65
|
+
requirement: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
67
|
+
requirements:
|
68
|
+
- - ! '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
type: :runtime
|
72
|
+
prerelease: false
|
73
|
+
version_requirements: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
75
|
+
requirements:
|
76
|
+
- - ! '>='
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
description: Shim is a small CMS built as a Rails engine.
|
80
|
+
email:
|
81
|
+
- mikey.utley@gmail.com
|
82
|
+
- corey.woodcox@gmail.com
|
83
|
+
executables:
|
84
|
+
- shim
|
85
|
+
extensions: []
|
86
|
+
extra_rdoc_files: []
|
87
|
+
files:
|
88
|
+
- .gitignore
|
89
|
+
- .rvmrc
|
90
|
+
- Gemfile
|
91
|
+
- LICENSE
|
92
|
+
- MIT-LICENSE
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- app/assets/images/shim/.gitkeep
|
96
|
+
- app/assets/javascripts/shim/application.js
|
97
|
+
- app/assets/stylesheets/shim/application.css
|
98
|
+
- app/controllers/shim/application_controller.rb
|
99
|
+
- app/controllers/shim/pages_controller.rb
|
100
|
+
- app/helpers/shim/application_helper.rb
|
101
|
+
- app/views/layouts/shim/application.html.erb
|
102
|
+
- bin/shim
|
103
|
+
- config/routes.rb
|
104
|
+
- lib/shim.rb
|
105
|
+
- lib/shim/cli.rb
|
106
|
+
- lib/shim/engine.rb
|
107
|
+
- lib/shim/version.rb
|
108
|
+
- lib/tasks/shim_tasks.rake
|
109
|
+
- script/rails
|
110
|
+
- shim.gemspec
|
111
|
+
- test/dummy/README.rdoc
|
112
|
+
- test/dummy/Rakefile
|
113
|
+
- test/dummy/app/assets/javascripts/application.js
|
114
|
+
- test/dummy/app/assets/stylesheets/application.css
|
115
|
+
- test/dummy/app/controllers/application_controller.rb
|
116
|
+
- test/dummy/app/helpers/application_helper.rb
|
117
|
+
- test/dummy/app/mailers/.gitkeep
|
118
|
+
- test/dummy/app/models/.gitkeep
|
119
|
+
- test/dummy/app/views/layouts/application.html.erb
|
120
|
+
- test/dummy/config.ru
|
121
|
+
- test/dummy/config/application.rb
|
122
|
+
- test/dummy/config/boot.rb
|
123
|
+
- test/dummy/config/database.yml
|
124
|
+
- test/dummy/config/environment.rb
|
125
|
+
- test/dummy/config/environments/development.rb
|
126
|
+
- test/dummy/config/environments/production.rb
|
127
|
+
- test/dummy/config/environments/test.rb
|
128
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
129
|
+
- test/dummy/config/initializers/inflections.rb
|
130
|
+
- test/dummy/config/initializers/mime_types.rb
|
131
|
+
- test/dummy/config/initializers/secret_token.rb
|
132
|
+
- test/dummy/config/initializers/session_store.rb
|
133
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
134
|
+
- test/dummy/config/locales/en.yml
|
135
|
+
- test/dummy/config/routes.rb
|
136
|
+
- test/dummy/lib/assets/.gitkeep
|
137
|
+
- test/dummy/log/.gitkeep
|
138
|
+
- test/dummy/public/404.html
|
139
|
+
- test/dummy/public/422.html
|
140
|
+
- test/dummy/public/500.html
|
141
|
+
- test/dummy/public/favicon.ico
|
142
|
+
- test/dummy/script/rails
|
143
|
+
- test/integration/navigation_test.rb
|
144
|
+
- test/shim_test.rb
|
145
|
+
- test/test_helper.rb
|
146
|
+
homepage: ''
|
147
|
+
licenses: []
|
148
|
+
post_install_message:
|
149
|
+
rdoc_options: []
|
150
|
+
require_paths:
|
151
|
+
- lib
|
152
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ! '>='
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
159
|
+
none: false
|
160
|
+
requirements:
|
161
|
+
- - ! '>='
|
162
|
+
- !ruby/object:Gem::Version
|
163
|
+
version: '0'
|
164
|
+
requirements: []
|
165
|
+
rubyforge_project:
|
166
|
+
rubygems_version: 1.8.24
|
167
|
+
signing_key:
|
168
|
+
specification_version: 3
|
169
|
+
summary: Shim follows Rails principles to create a CMS environment familiar to developers
|
170
|
+
and easy for designers.
|
171
|
+
test_files:
|
172
|
+
- test/dummy/README.rdoc
|
173
|
+
- test/dummy/Rakefile
|
174
|
+
- test/dummy/app/assets/javascripts/application.js
|
175
|
+
- test/dummy/app/assets/stylesheets/application.css
|
176
|
+
- test/dummy/app/controllers/application_controller.rb
|
177
|
+
- test/dummy/app/helpers/application_helper.rb
|
178
|
+
- test/dummy/app/mailers/.gitkeep
|
179
|
+
- test/dummy/app/models/.gitkeep
|
180
|
+
- test/dummy/app/views/layouts/application.html.erb
|
181
|
+
- test/dummy/config.ru
|
182
|
+
- test/dummy/config/application.rb
|
183
|
+
- test/dummy/config/boot.rb
|
184
|
+
- test/dummy/config/database.yml
|
185
|
+
- test/dummy/config/environment.rb
|
186
|
+
- test/dummy/config/environments/development.rb
|
187
|
+
- test/dummy/config/environments/production.rb
|
188
|
+
- test/dummy/config/environments/test.rb
|
189
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
190
|
+
- test/dummy/config/initializers/inflections.rb
|
191
|
+
- test/dummy/config/initializers/mime_types.rb
|
192
|
+
- test/dummy/config/initializers/secret_token.rb
|
193
|
+
- test/dummy/config/initializers/session_store.rb
|
194
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
195
|
+
- test/dummy/config/locales/en.yml
|
196
|
+
- test/dummy/config/routes.rb
|
197
|
+
- test/dummy/lib/assets/.gitkeep
|
198
|
+
- test/dummy/log/.gitkeep
|
199
|
+
- test/dummy/public/404.html
|
200
|
+
- test/dummy/public/422.html
|
201
|
+
- test/dummy/public/500.html
|
202
|
+
- test/dummy/public/favicon.ico
|
203
|
+
- test/dummy/script/rails
|
204
|
+
- test/integration/navigation_test.rb
|
205
|
+
- test/shim_test.rb
|
206
|
+
- test/test_helper.rb
|