ricogen 0.2 → 0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +0 -3
- data/VERSION +1 -1
- data/templates/Gemfile +28 -19
- data/test/hamgen_test.rb +1 -1
- data/test_app/Gemfile +68 -0
- data/test_app/Rakefile +7 -0
- data/test_app/app/controllers/application_controller.rb +3 -0
- data/test_app/app/helpers/application_helper.rb +2 -0
- data/test_app/app/stylesheets/_setup.sass +12 -0
- data/test_app/app/stylesheets/application.sass +15 -0
- data/test_app/app/stylesheets/lib/_extend.sass +87 -0
- data/test_app/app/stylesheets/lib/_mixins.sass +78 -0
- data/test_app/app/stylesheets/lib/_reset.sass +150 -0
- data/test_app/app/stylesheets/lib/_variables.sass +26 -0
- data/test_app/app/stylesheets/styles/_common.sass +1 -0
- data/test_app/app/stylesheets/styles/_extend.sass +1 -0
- data/test_app/app/stylesheets/styles/_mixins.sass +1 -0
- data/test_app/app/stylesheets/styles/_template.sass +1 -0
- data/test_app/app/stylesheets/styles/_variables.sass +1 -0
- data/test_app/app/views/layouts/application.html.haml +28 -0
- data/test_app/config/app.yml +5 -0
- data/test_app/config/application.rb +52 -0
- data/test_app/config/auth_providers.yml +55 -0
- data/test_app/config/boot.rb +6 -0
- data/test_app/config/compass.config +15 -0
- data/test_app/config/database.yml +22 -0
- data/test_app/config/environment.rb +18 -0
- data/test_app/config/environments/development.rb +26 -0
- data/test_app/config/environments/production.rb +49 -0
- data/test_app/config/environments/test.rb +35 -0
- data/test_app/config/initializers/_config.rb +49 -0
- data/test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test_app/config/initializers/compass.rb +5 -0
- data/test_app/config/initializers/inflections.rb +10 -0
- data/test_app/config/initializers/mime_types.rb +5 -0
- data/test_app/config/initializers/mongo.rb +10 -0
- data/test_app/config/locales/en.yml +5 -0
- data/test_app/config/magent.yml +13 -0
- data/test_app/config/mongoid.yml +23 -0
- data/test_app/config/routes.rb +58 -0
- data/test_app/config.ru +4 -0
- data/test_app/db/seeds.rb +7 -0
- data/test_app/doc/README_FOR_APP +2 -0
- data/test_app/log/development.log +0 -0
- data/test_app/log/production.log +0 -0
- data/test_app/log/server.log +0 -0
- data/test_app/log/test.log +0 -0
- data/test_app/public/404.html +26 -0
- data/test_app/public/422.html +26 -0
- data/test_app/public/500.html +26 -0
- data/test_app/public/javascripts/application.js +7 -0
- data/test_app/public/javascripts/rails.js +1 -0
- data/test_app/script/rails +6 -0
- data/test_app/test/performance/browsing_test.rb +9 -0
- data/test_app/test/test_helper.rb +13 -0
- metadata +54 -3
metadata
CHANGED
@@ -4,8 +4,8 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
8
|
-
version: "0.
|
7
|
+
- 3
|
8
|
+
version: "0.3"
|
9
9
|
platform: ruby
|
10
10
|
authors:
|
11
11
|
- Hampton Catlin
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date:
|
17
|
+
date: 2011-07-08 00:00:00 -05:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -119,6 +119,57 @@ files:
|
|
119
119
|
- init.rb
|
120
120
|
- REVISION
|
121
121
|
- VERSION
|
122
|
+
- test_app/db/seeds.rb
|
123
|
+
- test_app/config.ru
|
124
|
+
- test_app/Gemfile
|
125
|
+
- test_app/Rakefile
|
126
|
+
- test_app/config/application.rb
|
127
|
+
- test_app/config/auth_providers.yml
|
128
|
+
- test_app/config/environment.rb
|
129
|
+
- test_app/config/routes.rb
|
130
|
+
- test_app/config/initializers/compass.rb
|
131
|
+
- test_app/config/initializers/mime_types.rb
|
132
|
+
- test_app/config/initializers/backtrace_silencers.rb
|
133
|
+
- test_app/config/initializers/_config.rb
|
134
|
+
- test_app/config/initializers/mongo.rb
|
135
|
+
- test_app/config/initializers/inflections.rb
|
136
|
+
- test_app/config/compass.config
|
137
|
+
- test_app/config/database.yml
|
138
|
+
- test_app/config/magent.yml
|
139
|
+
- test_app/config/locales/en.yml
|
140
|
+
- test_app/config/boot.rb
|
141
|
+
- test_app/config/mongoid.yml
|
142
|
+
- test_app/config/app.yml
|
143
|
+
- test_app/config/environments/production.rb
|
144
|
+
- test_app/config/environments/development.rb
|
145
|
+
- test_app/config/environments/test.rb
|
146
|
+
- test_app/test/test_helper.rb
|
147
|
+
- test_app/test/performance/browsing_test.rb
|
148
|
+
- test_app/app/views/layouts/application.html.haml
|
149
|
+
- test_app/app/helpers/application_helper.rb
|
150
|
+
- test_app/app/controllers/application_controller.rb
|
151
|
+
- test_app/app/stylesheets/styles/_variables.sass
|
152
|
+
- test_app/app/stylesheets/styles/_common.sass
|
153
|
+
- test_app/app/stylesheets/styles/_mixins.sass
|
154
|
+
- test_app/app/stylesheets/styles/_extend.sass
|
155
|
+
- test_app/app/stylesheets/styles/_template.sass
|
156
|
+
- test_app/app/stylesheets/_setup.sass
|
157
|
+
- test_app/app/stylesheets/lib/_variables.sass
|
158
|
+
- test_app/app/stylesheets/lib/_mixins.sass
|
159
|
+
- test_app/app/stylesheets/lib/_extend.sass
|
160
|
+
- test_app/app/stylesheets/lib/_reset.sass
|
161
|
+
- test_app/app/stylesheets/application.sass
|
162
|
+
- test_app/log/server.log
|
163
|
+
- test_app/log/test.log
|
164
|
+
- test_app/log/development.log
|
165
|
+
- test_app/log/production.log
|
166
|
+
- test_app/doc/README_FOR_APP
|
167
|
+
- test_app/script/rails
|
168
|
+
- test_app/public/500.html
|
169
|
+
- test_app/public/422.html
|
170
|
+
- test_app/public/404.html
|
171
|
+
- test_app/public/javascripts/application.js
|
172
|
+
- test_app/public/javascripts/rails.js
|
122
173
|
has_rdoc: true
|
123
174
|
homepage: http://www.hamptoncatlin.com/
|
124
175
|
licenses: []
|