simple_showcase_admin 0.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.
Files changed (92) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/simple_showcase_admin/application.js +23 -0
  5. data/app/assets/javascripts/simple_showcase_admin/jquery.photo_featured.js +3 -0
  6. data/app/assets/javascripts/simple_showcase_admin/jquery.photos.js +18 -0
  7. data/app/assets/stylesheets/simple_showcase_admin/application.css.scss +123 -0
  8. data/app/controllers/simple_showcase_admin/application_controller.rb +10 -0
  9. data/app/controllers/simple_showcase_admin/categories_controller.rb +44 -0
  10. data/app/controllers/simple_showcase_admin/details_controller.rb +20 -0
  11. data/app/controllers/simple_showcase_admin/items_controller.rb +48 -0
  12. data/app/controllers/simple_showcase_admin/password_resets_controller.rb +40 -0
  13. data/app/controllers/simple_showcase_admin/sessions_controller.rb +25 -0
  14. data/app/helpers/simple_showcase_admin/application_helper.rb +12 -0
  15. data/app/helpers/simple_showcase_admin/items_helper.rb +15 -0
  16. data/app/mailers/simple_showcase_admin/user_mailer.rb +12 -0
  17. data/app/models/simple_showcase_admin/category.rb +20 -0
  18. data/app/models/simple_showcase_admin/item.rb +24 -0
  19. data/app/models/simple_showcase_admin/photo.rb +13 -0
  20. data/app/models/simple_showcase_admin/user.rb +25 -0
  21. data/app/uploaders/image_uploader.rb +22 -0
  22. data/app/views/layouts/simple_showcase_admin/application.html.haml +47 -0
  23. data/app/views/simple_showcase_admin/categories/edit.html.haml +9 -0
  24. data/app/views/simple_showcase_admin/categories/index.html.haml +26 -0
  25. data/app/views/simple_showcase_admin/categories/new.html.haml +9 -0
  26. data/app/views/simple_showcase_admin/categories/show.html.haml +49 -0
  27. data/app/views/simple_showcase_admin/details/edit.html.haml +11 -0
  28. data/app/views/simple_showcase_admin/details/show.html.haml +7 -0
  29. data/app/views/simple_showcase_admin/items/_photos.html.haml +12 -0
  30. data/app/views/simple_showcase_admin/items/edit.html.haml +26 -0
  31. data/app/views/simple_showcase_admin/items/index.html.haml +48 -0
  32. data/app/views/simple_showcase_admin/items/new.html.haml +24 -0
  33. data/app/views/simple_showcase_admin/items/show.html.haml +15 -0
  34. data/app/views/simple_showcase_admin/password_resets/edit.html.haml +9 -0
  35. data/app/views/simple_showcase_admin/password_resets/new.html.haml +8 -0
  36. data/app/views/simple_showcase_admin/sessions/new.html.haml +19 -0
  37. data/app/views/simple_showcase_admin/user_mailer/reset_password_email.html.haml +8 -0
  38. data/config/initializers/simple_form.rb +177 -0
  39. data/config/initializers/sorcery.rb +386 -0
  40. data/config/routes.rb +13 -0
  41. data/db/migrate/001_sorcery_core.rb +15 -0
  42. data/db/migrate/002_sorcery_remember_me.rb +15 -0
  43. data/db/migrate/003_sorcery_reset_password.rb +17 -0
  44. data/db/migrate/004_add_slug_to_users.rb +7 -0
  45. data/db/migrate/005_add_first_name_to_users.rb +6 -0
  46. data/db/migrate/006_create_categories.rb +9 -0
  47. data/db/migrate/007_create_items.rb +10 -0
  48. data/db/migrate/008_create_photos.rb +9 -0
  49. data/db/migrate/009_add_category_id_to_items.rb +6 -0
  50. data/db/migrate/010_add_slug_to_categories.rb +7 -0
  51. data/db/migrate/011_add_slug_to_items.rb +6 -0
  52. data/db/migrate/012_add_item_id_to_photos.rb +5 -0
  53. data/db/migrate/013_add_featured_to_photos.rb +5 -0
  54. data/db/migrate/014_add_landscape_to_photos.rb +5 -0
  55. data/lib/generators/simple_showcase_admin/install_generator.rb +69 -0
  56. data/lib/simple_showcase_admin/configuration.rb +11 -0
  57. data/lib/simple_showcase_admin/engine.rb +21 -0
  58. data/lib/simple_showcase_admin/version.rb +3 -0
  59. data/lib/simple_showcase_admin.rb +5 -0
  60. data/lib/tasks/simple_showcase_admin_tasks.rake +4 -0
  61. data/test/dummy/README.rdoc +261 -0
  62. data/test/dummy/Rakefile +7 -0
  63. data/test/dummy/app/assets/javascripts/application.js +15 -0
  64. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  65. data/test/dummy/app/controllers/application_controller.rb +3 -0
  66. data/test/dummy/app/helpers/application_helper.rb +2 -0
  67. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  68. data/test/dummy/config/application.rb +59 -0
  69. data/test/dummy/config/boot.rb +10 -0
  70. data/test/dummy/config/database.yml +25 -0
  71. data/test/dummy/config/environment.rb +5 -0
  72. data/test/dummy/config/environments/development.rb +37 -0
  73. data/test/dummy/config/environments/production.rb +67 -0
  74. data/test/dummy/config/environments/test.rb +37 -0
  75. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  76. data/test/dummy/config/initializers/inflections.rb +15 -0
  77. data/test/dummy/config/initializers/mime_types.rb +5 -0
  78. data/test/dummy/config/initializers/secret_token.rb +7 -0
  79. data/test/dummy/config/initializers/session_store.rb +8 -0
  80. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  81. data/test/dummy/config/locales/en.yml +5 -0
  82. data/test/dummy/config/routes.rb +4 -0
  83. data/test/dummy/config.ru +4 -0
  84. data/test/dummy/public/404.html +26 -0
  85. data/test/dummy/public/422.html +26 -0
  86. data/test/dummy/public/500.html +25 -0
  87. data/test/dummy/public/favicon.ico +0 -0
  88. data/test/dummy/script/rails +6 -0
  89. data/test/integration/navigation_test.rb +10 -0
  90. data/test/simple_showcase_admin_test.rb +7 -0
  91. data/test/test_helper.rb +15 -0
  92. metadata +477 -0
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class SimpleShowcaseAdminTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, SimpleShowcaseAdmin
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,477 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simple_showcase_admin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Ben Woodward
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-11-07 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 3.1.10
22
+ - - <
23
+ - !ruby/object:Gem::Version
24
+ version: '3.3'
25
+ - - ! '!='
26
+ - !ruby/object:Gem::Version
27
+ version: 3.2.0
28
+ - - ! '!='
29
+ - !ruby/object:Gem::Version
30
+ version: 3.2.1
31
+ - - ! '!='
32
+ - !ruby/object:Gem::Version
33
+ version: 3.2.2
34
+ - - ! '!='
35
+ - !ruby/object:Gem::Version
36
+ version: 3.2.3
37
+ - - ! '!='
38
+ - !ruby/object:Gem::Version
39
+ version: 3.2.4
40
+ - - ! '!='
41
+ - !ruby/object:Gem::Version
42
+ version: 3.2.5
43
+ - - ! '!='
44
+ - !ruby/object:Gem::Version
45
+ version: 3.2.6
46
+ - - ! '!='
47
+ - !ruby/object:Gem::Version
48
+ version: 3.2.7
49
+ - - ! '!='
50
+ - !ruby/object:Gem::Version
51
+ version: 3.2.8
52
+ - - ! '!='
53
+ - !ruby/object:Gem::Version
54
+ version: 3.2.9
55
+ - - ! '!='
56
+ - !ruby/object:Gem::Version
57
+ version: 3.2.10
58
+ type: :runtime
59
+ prerelease: false
60
+ version_requirements: !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: 3.1.10
66
+ - - <
67
+ - !ruby/object:Gem::Version
68
+ version: '3.3'
69
+ - - ! '!='
70
+ - !ruby/object:Gem::Version
71
+ version: 3.2.0
72
+ - - ! '!='
73
+ - !ruby/object:Gem::Version
74
+ version: 3.2.1
75
+ - - ! '!='
76
+ - !ruby/object:Gem::Version
77
+ version: 3.2.2
78
+ - - ! '!='
79
+ - !ruby/object:Gem::Version
80
+ version: 3.2.3
81
+ - - ! '!='
82
+ - !ruby/object:Gem::Version
83
+ version: 3.2.4
84
+ - - ! '!='
85
+ - !ruby/object:Gem::Version
86
+ version: 3.2.5
87
+ - - ! '!='
88
+ - !ruby/object:Gem::Version
89
+ version: 3.2.6
90
+ - - ! '!='
91
+ - !ruby/object:Gem::Version
92
+ version: 3.2.7
93
+ - - ! '!='
94
+ - !ruby/object:Gem::Version
95
+ version: 3.2.8
96
+ - - ! '!='
97
+ - !ruby/object:Gem::Version
98
+ version: 3.2.9
99
+ - - ! '!='
100
+ - !ruby/object:Gem::Version
101
+ version: 3.2.10
102
+ - !ruby/object:Gem::Dependency
103
+ name: simple_form
104
+ requirement: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ type: :runtime
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ - !ruby/object:Gem::Dependency
119
+ name: sorcery
120
+ requirement: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: '0.8'
126
+ type: :runtime
127
+ prerelease: false
128
+ version_requirements: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: '0.8'
134
+ - !ruby/object:Gem::Dependency
135
+ name: friendly_id
136
+ requirement: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ~>
140
+ - !ruby/object:Gem::Version
141
+ version: '4.0'
142
+ - - ! '>='
143
+ - !ruby/object:Gem::Version
144
+ version: 4.0.9
145
+ type: :runtime
146
+ prerelease: false
147
+ version_requirements: !ruby/object:Gem::Requirement
148
+ none: false
149
+ requirements:
150
+ - - ~>
151
+ - !ruby/object:Gem::Version
152
+ version: '4.0'
153
+ - - ! '>='
154
+ - !ruby/object:Gem::Version
155
+ version: 4.0.9
156
+ - !ruby/object:Gem::Dependency
157
+ name: jquery-rails
158
+ requirement: !ruby/object:Gem::Requirement
159
+ none: false
160
+ requirements:
161
+ - - ! '>='
162
+ - !ruby/object:Gem::Version
163
+ version: '0'
164
+ type: :runtime
165
+ prerelease: false
166
+ version_requirements: !ruby/object:Gem::Requirement
167
+ none: false
168
+ requirements:
169
+ - - ! '>='
170
+ - !ruby/object:Gem::Version
171
+ version: '0'
172
+ - !ruby/object:Gem::Dependency
173
+ name: haml
174
+ requirement: !ruby/object:Gem::Requirement
175
+ none: false
176
+ requirements:
177
+ - - ! '>='
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
180
+ type: :runtime
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ none: false
184
+ requirements:
185
+ - - ! '>='
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ - !ruby/object:Gem::Dependency
189
+ name: kaminari
190
+ requirement: !ruby/object:Gem::Requirement
191
+ none: false
192
+ requirements:
193
+ - - ~>
194
+ - !ruby/object:Gem::Version
195
+ version: '0.14'
196
+ type: :runtime
197
+ prerelease: false
198
+ version_requirements: !ruby/object:Gem::Requirement
199
+ none: false
200
+ requirements:
201
+ - - ~>
202
+ - !ruby/object:Gem::Version
203
+ version: '0.14'
204
+ - !ruby/object:Gem::Dependency
205
+ name: carrierwave
206
+ requirement: !ruby/object:Gem::Requirement
207
+ none: false
208
+ requirements:
209
+ - - ! '>='
210
+ - !ruby/object:Gem::Version
211
+ version: '0'
212
+ type: :runtime
213
+ prerelease: false
214
+ version_requirements: !ruby/object:Gem::Requirement
215
+ none: false
216
+ requirements:
217
+ - - ! '>='
218
+ - !ruby/object:Gem::Version
219
+ version: '0'
220
+ - !ruby/object:Gem::Dependency
221
+ name: rmagick
222
+ requirement: !ruby/object:Gem::Requirement
223
+ none: false
224
+ requirements:
225
+ - - ! '>='
226
+ - !ruby/object:Gem::Version
227
+ version: '0'
228
+ type: :runtime
229
+ prerelease: false
230
+ version_requirements: !ruby/object:Gem::Requirement
231
+ none: false
232
+ requirements:
233
+ - - ! '>='
234
+ - !ruby/object:Gem::Version
235
+ version: '0'
236
+ - !ruby/object:Gem::Dependency
237
+ name: compass-rails
238
+ requirement: !ruby/object:Gem::Requirement
239
+ none: false
240
+ requirements:
241
+ - - ! '>='
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ type: :runtime
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ none: false
248
+ requirements:
249
+ - - ! '>='
250
+ - !ruby/object:Gem::Version
251
+ version: '0'
252
+ - !ruby/object:Gem::Dependency
253
+ name: compass_twitter_bootstrap
254
+ requirement: !ruby/object:Gem::Requirement
255
+ none: false
256
+ requirements:
257
+ - - ! '>='
258
+ - !ruby/object:Gem::Version
259
+ version: '0'
260
+ type: :runtime
261
+ prerelease: false
262
+ version_requirements: !ruby/object:Gem::Requirement
263
+ none: false
264
+ requirements:
265
+ - - ! '>='
266
+ - !ruby/object:Gem::Version
267
+ version: '0'
268
+ - !ruby/object:Gem::Dependency
269
+ name: redcarpet
270
+ requirement: !ruby/object:Gem::Requirement
271
+ none: false
272
+ requirements:
273
+ - - ! '>='
274
+ - !ruby/object:Gem::Version
275
+ version: '0'
276
+ type: :runtime
277
+ prerelease: false
278
+ version_requirements: !ruby/object:Gem::Requirement
279
+ none: false
280
+ requirements:
281
+ - - ! '>='
282
+ - !ruby/object:Gem::Version
283
+ version: '0'
284
+ - !ruby/object:Gem::Dependency
285
+ name: rspec-rails
286
+ requirement: !ruby/object:Gem::Requirement
287
+ none: false
288
+ requirements:
289
+ - - ~>
290
+ - !ruby/object:Gem::Version
291
+ version: '2.13'
292
+ type: :development
293
+ prerelease: false
294
+ version_requirements: !ruby/object:Gem::Requirement
295
+ none: false
296
+ requirements:
297
+ - - ~>
298
+ - !ruby/object:Gem::Version
299
+ version: '2.13'
300
+ - !ruby/object:Gem::Dependency
301
+ name: sqlite3
302
+ requirement: !ruby/object:Gem::Requirement
303
+ none: false
304
+ requirements:
305
+ - - ! '>='
306
+ - !ruby/object:Gem::Version
307
+ version: '0'
308
+ type: :development
309
+ prerelease: false
310
+ version_requirements: !ruby/object:Gem::Requirement
311
+ none: false
312
+ requirements:
313
+ - - ! '>='
314
+ - !ruby/object:Gem::Version
315
+ version: '0'
316
+ description: SimpleShowcaseAdmin includes all the necessary logic to create a basic
317
+ admin panel that allows for reorderable items that are grouped into categories.
318
+ It does not include any frontend code.
319
+ email:
320
+ - b@benw.me
321
+ executables: []
322
+ extensions: []
323
+ extra_rdoc_files: []
324
+ files:
325
+ - app/assets/javascripts/simple_showcase_admin/application.js
326
+ - app/assets/javascripts/simple_showcase_admin/jquery.photo_featured.js
327
+ - app/assets/javascripts/simple_showcase_admin/jquery.photos.js
328
+ - app/assets/stylesheets/simple_showcase_admin/application.css.scss
329
+ - app/controllers/simple_showcase_admin/application_controller.rb
330
+ - app/controllers/simple_showcase_admin/categories_controller.rb
331
+ - app/controllers/simple_showcase_admin/details_controller.rb
332
+ - app/controllers/simple_showcase_admin/items_controller.rb
333
+ - app/controllers/simple_showcase_admin/password_resets_controller.rb
334
+ - app/controllers/simple_showcase_admin/sessions_controller.rb
335
+ - app/helpers/simple_showcase_admin/application_helper.rb
336
+ - app/helpers/simple_showcase_admin/items_helper.rb
337
+ - app/mailers/simple_showcase_admin/user_mailer.rb
338
+ - app/models/simple_showcase_admin/category.rb
339
+ - app/models/simple_showcase_admin/item.rb
340
+ - app/models/simple_showcase_admin/photo.rb
341
+ - app/models/simple_showcase_admin/user.rb
342
+ - app/uploaders/image_uploader.rb
343
+ - app/views/layouts/simple_showcase_admin/application.html.haml
344
+ - app/views/simple_showcase_admin/categories/edit.html.haml
345
+ - app/views/simple_showcase_admin/categories/index.html.haml
346
+ - app/views/simple_showcase_admin/categories/new.html.haml
347
+ - app/views/simple_showcase_admin/categories/show.html.haml
348
+ - app/views/simple_showcase_admin/details/edit.html.haml
349
+ - app/views/simple_showcase_admin/details/show.html.haml
350
+ - app/views/simple_showcase_admin/items/_photos.html.haml
351
+ - app/views/simple_showcase_admin/items/edit.html.haml
352
+ - app/views/simple_showcase_admin/items/index.html.haml
353
+ - app/views/simple_showcase_admin/items/new.html.haml
354
+ - app/views/simple_showcase_admin/items/show.html.haml
355
+ - app/views/simple_showcase_admin/password_resets/edit.html.haml
356
+ - app/views/simple_showcase_admin/password_resets/new.html.haml
357
+ - app/views/simple_showcase_admin/sessions/new.html.haml
358
+ - app/views/simple_showcase_admin/user_mailer/reset_password_email.html.haml
359
+ - config/initializers/simple_form.rb
360
+ - config/initializers/sorcery.rb
361
+ - config/routes.rb
362
+ - db/migrate/001_sorcery_core.rb
363
+ - db/migrate/002_sorcery_remember_me.rb
364
+ - db/migrate/003_sorcery_reset_password.rb
365
+ - db/migrate/004_add_slug_to_users.rb
366
+ - db/migrate/005_add_first_name_to_users.rb
367
+ - db/migrate/006_create_categories.rb
368
+ - db/migrate/007_create_items.rb
369
+ - db/migrate/008_create_photos.rb
370
+ - db/migrate/009_add_category_id_to_items.rb
371
+ - db/migrate/010_add_slug_to_categories.rb
372
+ - db/migrate/011_add_slug_to_items.rb
373
+ - db/migrate/012_add_item_id_to_photos.rb
374
+ - db/migrate/013_add_featured_to_photos.rb
375
+ - db/migrate/014_add_landscape_to_photos.rb
376
+ - lib/generators/simple_showcase_admin/install_generator.rb
377
+ - lib/simple_showcase_admin/configuration.rb
378
+ - lib/simple_showcase_admin/engine.rb
379
+ - lib/simple_showcase_admin/version.rb
380
+ - lib/simple_showcase_admin.rb
381
+ - lib/tasks/simple_showcase_admin_tasks.rake
382
+ - MIT-LICENSE
383
+ - Rakefile
384
+ - README.rdoc
385
+ - test/dummy/app/assets/javascripts/application.js
386
+ - test/dummy/app/assets/stylesheets/application.css
387
+ - test/dummy/app/controllers/application_controller.rb
388
+ - test/dummy/app/helpers/application_helper.rb
389
+ - test/dummy/app/views/layouts/application.html.erb
390
+ - test/dummy/config/application.rb
391
+ - test/dummy/config/boot.rb
392
+ - test/dummy/config/database.yml
393
+ - test/dummy/config/environment.rb
394
+ - test/dummy/config/environments/development.rb
395
+ - test/dummy/config/environments/production.rb
396
+ - test/dummy/config/environments/test.rb
397
+ - test/dummy/config/initializers/backtrace_silencers.rb
398
+ - test/dummy/config/initializers/inflections.rb
399
+ - test/dummy/config/initializers/mime_types.rb
400
+ - test/dummy/config/initializers/secret_token.rb
401
+ - test/dummy/config/initializers/session_store.rb
402
+ - test/dummy/config/initializers/wrap_parameters.rb
403
+ - test/dummy/config/locales/en.yml
404
+ - test/dummy/config/routes.rb
405
+ - test/dummy/config.ru
406
+ - test/dummy/public/404.html
407
+ - test/dummy/public/422.html
408
+ - test/dummy/public/500.html
409
+ - test/dummy/public/favicon.ico
410
+ - test/dummy/Rakefile
411
+ - test/dummy/README.rdoc
412
+ - test/dummy/script/rails
413
+ - test/integration/navigation_test.rb
414
+ - test/simple_showcase_admin_test.rb
415
+ - test/test_helper.rb
416
+ homepage:
417
+ licenses: []
418
+ post_install_message:
419
+ rdoc_options: []
420
+ require_paths:
421
+ - lib
422
+ required_ruby_version: !ruby/object:Gem::Requirement
423
+ none: false
424
+ requirements:
425
+ - - ! '>='
426
+ - !ruby/object:Gem::Version
427
+ version: '0'
428
+ segments:
429
+ - 0
430
+ hash: 2551806705316495194
431
+ required_rubygems_version: !ruby/object:Gem::Requirement
432
+ none: false
433
+ requirements:
434
+ - - ! '>='
435
+ - !ruby/object:Gem::Version
436
+ version: '0'
437
+ segments:
438
+ - 0
439
+ hash: 2551806705316495194
440
+ requirements: []
441
+ rubyforge_project:
442
+ rubygems_version: 1.8.23
443
+ signing_key:
444
+ specification_version: 3
445
+ summary: A very simple Rails backend to manage categories and items.
446
+ test_files:
447
+ - test/dummy/app/assets/javascripts/application.js
448
+ - test/dummy/app/assets/stylesheets/application.css
449
+ - test/dummy/app/controllers/application_controller.rb
450
+ - test/dummy/app/helpers/application_helper.rb
451
+ - test/dummy/app/views/layouts/application.html.erb
452
+ - test/dummy/config/application.rb
453
+ - test/dummy/config/boot.rb
454
+ - test/dummy/config/database.yml
455
+ - test/dummy/config/environment.rb
456
+ - test/dummy/config/environments/development.rb
457
+ - test/dummy/config/environments/production.rb
458
+ - test/dummy/config/environments/test.rb
459
+ - test/dummy/config/initializers/backtrace_silencers.rb
460
+ - test/dummy/config/initializers/inflections.rb
461
+ - test/dummy/config/initializers/mime_types.rb
462
+ - test/dummy/config/initializers/secret_token.rb
463
+ - test/dummy/config/initializers/session_store.rb
464
+ - test/dummy/config/initializers/wrap_parameters.rb
465
+ - test/dummy/config/locales/en.yml
466
+ - test/dummy/config/routes.rb
467
+ - test/dummy/config.ru
468
+ - test/dummy/public/404.html
469
+ - test/dummy/public/422.html
470
+ - test/dummy/public/500.html
471
+ - test/dummy/public/favicon.ico
472
+ - test/dummy/Rakefile
473
+ - test/dummy/README.rdoc
474
+ - test/dummy/script/rails
475
+ - test/integration/navigation_test.rb
476
+ - test/simple_showcase_admin_test.rb
477
+ - test/test_helper.rb