ricogen 0.2 → 0.3

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.
Files changed (56) hide show
  1. data/Rakefile +0 -3
  2. data/VERSION +1 -1
  3. data/templates/Gemfile +28 -19
  4. data/test/hamgen_test.rb +1 -1
  5. data/test_app/Gemfile +68 -0
  6. data/test_app/Rakefile +7 -0
  7. data/test_app/app/controllers/application_controller.rb +3 -0
  8. data/test_app/app/helpers/application_helper.rb +2 -0
  9. data/test_app/app/stylesheets/_setup.sass +12 -0
  10. data/test_app/app/stylesheets/application.sass +15 -0
  11. data/test_app/app/stylesheets/lib/_extend.sass +87 -0
  12. data/test_app/app/stylesheets/lib/_mixins.sass +78 -0
  13. data/test_app/app/stylesheets/lib/_reset.sass +150 -0
  14. data/test_app/app/stylesheets/lib/_variables.sass +26 -0
  15. data/test_app/app/stylesheets/styles/_common.sass +1 -0
  16. data/test_app/app/stylesheets/styles/_extend.sass +1 -0
  17. data/test_app/app/stylesheets/styles/_mixins.sass +1 -0
  18. data/test_app/app/stylesheets/styles/_template.sass +1 -0
  19. data/test_app/app/stylesheets/styles/_variables.sass +1 -0
  20. data/test_app/app/views/layouts/application.html.haml +28 -0
  21. data/test_app/config/app.yml +5 -0
  22. data/test_app/config/application.rb +52 -0
  23. data/test_app/config/auth_providers.yml +55 -0
  24. data/test_app/config/boot.rb +6 -0
  25. data/test_app/config/compass.config +15 -0
  26. data/test_app/config/database.yml +22 -0
  27. data/test_app/config/environment.rb +18 -0
  28. data/test_app/config/environments/development.rb +26 -0
  29. data/test_app/config/environments/production.rb +49 -0
  30. data/test_app/config/environments/test.rb +35 -0
  31. data/test_app/config/initializers/_config.rb +49 -0
  32. data/test_app/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test_app/config/initializers/compass.rb +5 -0
  34. data/test_app/config/initializers/inflections.rb +10 -0
  35. data/test_app/config/initializers/mime_types.rb +5 -0
  36. data/test_app/config/initializers/mongo.rb +10 -0
  37. data/test_app/config/locales/en.yml +5 -0
  38. data/test_app/config/magent.yml +13 -0
  39. data/test_app/config/mongoid.yml +23 -0
  40. data/test_app/config/routes.rb +58 -0
  41. data/test_app/config.ru +4 -0
  42. data/test_app/db/seeds.rb +7 -0
  43. data/test_app/doc/README_FOR_APP +2 -0
  44. data/test_app/log/development.log +0 -0
  45. data/test_app/log/production.log +0 -0
  46. data/test_app/log/server.log +0 -0
  47. data/test_app/log/test.log +0 -0
  48. data/test_app/public/404.html +26 -0
  49. data/test_app/public/422.html +26 -0
  50. data/test_app/public/500.html +26 -0
  51. data/test_app/public/javascripts/application.js +7 -0
  52. data/test_app/public/javascripts/rails.js +1 -0
  53. data/test_app/script/rails +6 -0
  54. data/test_app/test/performance/browsing_test.rb +9 -0
  55. data/test_app/test/test_helper.rb +13 -0
  56. 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
- - 2
8
- version: "0.2"
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: 2010-11-19 00:00:00 -05:00
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: []