giraffesoft-resource_controller 0.5.3 → 0.5.5

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 (74) hide show
  1. data/README.rdoc +2 -14
  2. data/VERSION.yml +4 -0
  3. data/lib/resource_controller.rb +1 -14
  4. data/lib/resource_controller/base.rb +2 -2
  5. data/lib/resource_controller/class_methods.rb +2 -2
  6. data/lib/resource_controller/helpers.rb +0 -6
  7. data/lib/resource_controller/helpers/nested.rb +1 -1
  8. data/lib/resource_controller/singleton.rb +2 -2
  9. data/test/app/controllers/cms/personnel_controller.rb +2 -0
  10. data/test/app/controllers/cms/photos_controller.rb +6 -0
  11. data/test/app/controllers/photos_controller.rb +1 -0
  12. data/test/app/models/personnel.rb +3 -0
  13. data/test/app/models/photo.rb +1 -0
  14. data/test/app/views/cms/photos/edit.rhtml +17 -0
  15. data/test/app/views/cms/photos/index.rhtml +20 -0
  16. data/test/app/views/cms/photos/new.rhtml +16 -0
  17. data/test/app/views/cms/photos/show.rhtml +8 -0
  18. data/test/config/database.yml +6 -10
  19. data/test/config/environment.rb +4 -4
  20. data/test/config/environments/development.rb +0 -1
  21. data/test/config/initializers/inflections.rb +14 -0
  22. data/test/config/routes.rb +3 -0
  23. data/test/db/migrate/013_create_personnel.rb +11 -0
  24. data/test/db/migrate/014_add_personnel_id_to_photos.rb +9 -0
  25. data/test/db/schema.rb +9 -3
  26. data/test/test/fixtures/personnel.yml +5 -0
  27. data/test/test/functional/cms/options_controller_test.rb +1 -1
  28. data/test/test/functional/cms/photos_controller_test.rb +43 -0
  29. data/test/test/functional/cms/products_controller_test.rb +1 -1
  30. data/test/test/functional/comments_controller_test.rb +1 -1
  31. data/test/test/functional/images_controller_test.rb +1 -1
  32. data/test/test/functional/people_controller_test.rb +1 -1
  33. data/test/test/functional/photos_controller_test.rb +1 -1
  34. data/test/test/functional/posts_controller_test.rb +1 -1
  35. data/test/test/functional/projects_controller_test.rb +1 -1
  36. data/test/test/functional/somethings_controller_test.rb +1 -1
  37. data/test/test/functional/tags_controller_test.rb +1 -1
  38. data/test/test/functional/users_controller_test.rb +1 -1
  39. data/test/test/test_helper.rb +1 -1
  40. data/test/test/unit/accessors_test.rb +2 -2
  41. data/test/test/unit/account_test.rb +1 -1
  42. data/test/test/unit/action_options_test.rb +1 -1
  43. data/test/test/unit/base_test.rb +1 -1
  44. data/test/test/unit/comment_test.rb +1 -1
  45. data/test/test/unit/failable_action_options_test.rb +1 -1
  46. data/test/test/unit/helpers_test.rb +1 -1
  47. data/test/test/unit/image_test.rb +1 -1
  48. data/test/test/unit/option_test.rb +1 -1
  49. data/test/test/unit/photo_test.rb +1 -1
  50. data/test/test/unit/post_test.rb +1 -1
  51. data/test/test/unit/project_test.rb +1 -1
  52. data/test/test/unit/response_collector_test.rb +1 -1
  53. data/test/test/unit/something_test.rb +1 -1
  54. data/test/test/unit/tag_test.rb +1 -1
  55. data/test/test/unit/urligence_test.rb +1 -1
  56. data/test/vendor/gems/{resource_controller-0.5.2 → resource_controller-10.0.0} +0 -0
  57. metadata +57 -69
  58. data/LICENSE +0 -22
  59. data/Rakefile +0 -35
  60. data/init.rb +0 -1
  61. data/lib/resource_controller/version.rb +0 -9
  62. data/test/vendor/plugins/shoulda/Rakefile +0 -32
  63. data/test/vendor/plugins/shoulda/bin/convert_to_should_syntax +0 -40
  64. data/test/vendor/plugins/shoulda/init.rb +0 -3
  65. data/test/vendor/plugins/shoulda/lib/shoulda.rb +0 -43
  66. data/test/vendor/plugins/shoulda/lib/shoulda/active_record_helpers.rb +0 -580
  67. data/test/vendor/plugins/shoulda/lib/shoulda/color.rb +0 -77
  68. data/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/controller_tests.rb +0 -467
  69. data/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/html.rb +0 -201
  70. data/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/xml.rb +0 -170
  71. data/test/vendor/plugins/shoulda/lib/shoulda/gem/proc_extensions.rb +0 -14
  72. data/test/vendor/plugins/shoulda/lib/shoulda/gem/shoulda.rb +0 -239
  73. data/test/vendor/plugins/shoulda/lib/shoulda/general.rb +0 -118
  74. data/test/vendor/plugins/shoulda/lib/shoulda/private_helpers.rb +0 -22
@@ -4,7 +4,7 @@ require 'comments_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class CommentsController; def rescue_action(e) raise e end; end
6
6
 
7
- class CommentsControllerTest < Test::Unit::TestCase
7
+ class CommentsControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = CommentsController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require 'images_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class ImagesController; def rescue_action(e) raise e end; end
6
6
 
7
- class ImagesControllerTest < Test::Unit::TestCase
7
+ class ImagesControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = ImagesController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require 'people_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class PeopleController; def rescue_action(e) raise e end; end
6
6
 
7
- class PeopleControllerTest < Test::Unit::TestCase
7
+ class PeopleControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = PeopleController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require 'photos_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class PhotosController; def rescue_action(e) raise e end; end
6
6
 
7
- class PhotosControllerTest < Test::Unit::TestCase
7
+ class PhotosControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = PhotosController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require 'posts_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class PostsController; def rescue_action(e) raise e end; end
6
6
 
7
- class PostsControllerTest < Test::Unit::TestCase
7
+ class PostsControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = PostsController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require 'projects_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class ProjectsController; def rescue_action(e) raise e end; end
6
6
 
7
- class ProjectsControllerTest < Test::Unit::TestCase
7
+ class ProjectsControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = ProjectsController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require 'somethings_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class SomethingsController; def rescue_action(e) raise e end; end
6
6
 
7
- class SomethingsControllerTest < Test::Unit::TestCase
7
+ class SomethingsControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = SomethingsController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require 'tags_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class TagsController; def rescue_action(e) raise e end; end
6
6
 
7
- class TagsControllerTest < Test::Unit::TestCase
7
+ class TagsControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = TagsController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require 'users_controller'
4
4
  # Re-raise errors caught by the controller.
5
5
  class UsersController; def rescue_action(e) raise e end; end
6
6
 
7
- class UsersControllerTest < Test::Unit::TestCase
7
+ class UsersControllerTest < ActionController::TestCase
8
8
  def setup
9
9
  @controller = UsersController.new
10
10
  @request = ActionController::TestRequest.new
@@ -4,7 +4,7 @@ require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
4
4
  require 'test_help'
5
5
  require 'mocha'
6
6
 
7
- class Test::Unit::TestCase
7
+ class ActiveSupport::TestCase
8
8
  self.use_transactional_fixtures = true
9
9
  self.use_instantiated_fixtures = false
10
10
 
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__)+'/../test_helper'
2
2
 
3
- class AccessorsTest < Test::Unit::TestCase
3
+ class AccessorsTest < ActiveSupport::TestCase
4
4
  def setup
5
5
  PostsController.class_eval do
6
6
  extend ResourceController::Accessors
@@ -107,4 +107,4 @@ class AccessorsTest < Test::Unit::TestCase
107
107
  end
108
108
  end
109
109
 
110
- end
110
+ end
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class PersonTest < Test::Unit::TestCase
3
+ class PersonTest < ActiveSupport::TestCase
4
4
  def test_truth
5
5
  assert true
6
6
  end
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__)+'/../test_helper'
2
2
 
3
- class ActionOptionsTest < Test::Unit::TestCase
3
+ class ActionOptionsTest < ActiveSupport::TestCase
4
4
  def setup
5
5
  @controller = PostsController.new
6
6
  @create = ResourceController::ActionOptions.new
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__)+'/../test_helper'
2
2
 
3
- class BaseTest < Test::Unit::TestCase
3
+ class BaseTest < ActiveSupport::TestCase
4
4
  def setup
5
5
  @controller = ResourceController::Base.new
6
6
  end
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class CommentTest < Test::Unit::TestCase
3
+ class CommentTest < ActiveSupport::TestCase
4
4
  fixtures :comments
5
5
 
6
6
  # Replace this with your real tests.
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__)+'/../test_helper'
2
2
 
3
- class FailableActionOptionsTest < Test::Unit::TestCase
3
+ class FailableActionOptionsTest < ActiveSupport::TestCase
4
4
  def setup
5
5
  @controller = PostsController.new
6
6
  @create = ResourceController::FailableActionOptions.new
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__)+'/../test_helper'
2
2
 
3
- class HelpersTest < Test::Unit::TestCase
3
+ class HelpersTest < ActiveSupport::TestCase
4
4
 
5
5
  def setup
6
6
  @controller = PostsController.new
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class ImageTest < Test::Unit::TestCase
3
+ class ImageTest < ActiveSupport::TestCase
4
4
  def test_truth
5
5
  assert true
6
6
  end
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class OptionTest < Test::Unit::TestCase
3
+ class OptionTest < ActiveSupport::TestCase
4
4
  fixtures :options
5
5
 
6
6
  # Replace this with your real tests.
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class PhotoTest < Test::Unit::TestCase
3
+ class PhotoTest < ActiveSupport::TestCase
4
4
  fixtures :photos
5
5
 
6
6
  # Replace this with your real tests.
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class PostTest < Test::Unit::TestCase
3
+ class PostTest < ActiveSupport::TestCase
4
4
  fixtures :posts
5
5
 
6
6
  # Replace this with your real tests.
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class ProjectTest < Test::Unit::TestCase
3
+ class ProjectTest < ActiveSupport::TestCase
4
4
  fixtures :projects
5
5
 
6
6
  # Replace this with your real tests.
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__)+'/../test_helper'
2
2
 
3
- class ResponseCollectorTest < Test::Unit::TestCase
3
+ class ResponseCollectorTest < ActiveSupport::TestCase
4
4
  context "yielding a block to a collector object" do
5
5
  setup do
6
6
  @collector = ResourceController::ResponseCollector.new
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class SomethingTest < Test::Unit::TestCase
3
+ class SomethingTest < ActiveSupport::TestCase
4
4
  fixtures :somethings
5
5
 
6
6
  # Replace this with your real tests.
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/../test_helper'
2
2
 
3
- class TagTest < Test::Unit::TestCase
3
+ class TagTest < ActiveSupport::TestCase
4
4
  fixtures :tags
5
5
 
6
6
  # Replace this with your real tests.
@@ -5,7 +5,7 @@ class PhotosController
5
5
  include Urligence
6
6
  end
7
7
 
8
- class UrligenceTest < Test::Unit::TestCase
8
+ class UrligenceTest < ActiveSupport::TestCase
9
9
  def setup
10
10
  @controller = PhotosController.new
11
11
  @tag = stub(:class => stub(:name => "Tag"), :to_param => 'awesomestuff')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: giraffesoft-resource_controller
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Golick
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-09-21 21:00:00 -07:00
12
+ date: 2009-02-09 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: Rails RESTful controller abstraction plugin.
16
+ description: ""
17
17
  email: james@giraffesoft.ca
18
18
  executables: []
19
19
 
@@ -23,9 +23,40 @@ extra_rdoc_files: []
23
23
 
24
24
  files:
25
25
  - README.rdoc
26
- - LICENSE
27
- - init.rb
28
- - Rakefile
26
+ - VERSION.yml
27
+ - generators/scaffold_resource
28
+ - generators/scaffold_resource/scaffold_resource_generator.rb
29
+ - generators/scaffold_resource/templates
30
+ - generators/scaffold_resource/templates/controller.rb
31
+ - generators/scaffold_resource/templates/fixtures.yml
32
+ - generators/scaffold_resource/templates/functional_test.rb
33
+ - generators/scaffold_resource/templates/helper.rb
34
+ - generators/scaffold_resource/templates/migration.rb
35
+ - generators/scaffold_resource/templates/model.rb
36
+ - generators/scaffold_resource/templates/old_migration.rb
37
+ - generators/scaffold_resource/templates/rspec
38
+ - generators/scaffold_resource/templates/rspec/functional_spec.rb
39
+ - generators/scaffold_resource/templates/rspec/helper_spec.rb
40
+ - generators/scaffold_resource/templates/rspec/routing_spec.rb
41
+ - generators/scaffold_resource/templates/rspec/unit_spec.rb
42
+ - generators/scaffold_resource/templates/rspec/views
43
+ - generators/scaffold_resource/templates/rspec/views/edit_spec.rb
44
+ - generators/scaffold_resource/templates/rspec/views/index_spec.rb
45
+ - generators/scaffold_resource/templates/rspec/views/new_spec.rb
46
+ - generators/scaffold_resource/templates/rspec/views/show_spec.rb
47
+ - generators/scaffold_resource/templates/shoulda_functional_test.rb
48
+ - generators/scaffold_resource/templates/unit_test.rb
49
+ - generators/scaffold_resource/templates/view__form.erb
50
+ - generators/scaffold_resource/templates/view__form.haml
51
+ - generators/scaffold_resource/templates/view_edit.erb
52
+ - generators/scaffold_resource/templates/view_edit.haml
53
+ - generators/scaffold_resource/templates/view_index.erb
54
+ - generators/scaffold_resource/templates/view_index.haml
55
+ - generators/scaffold_resource/templates/view_new.erb
56
+ - generators/scaffold_resource/templates/view_new.haml
57
+ - generators/scaffold_resource/templates/view_show.erb
58
+ - generators/scaffold_resource/templates/view_show.haml
59
+ - generators/scaffold_resource/USAGE
29
60
  - lib/resource_controller
30
61
  - lib/resource_controller/accessors.rb
31
62
  - lib/resource_controller/action_options.rb
@@ -43,7 +74,6 @@ files:
43
74
  - lib/resource_controller/helpers.rb
44
75
  - lib/resource_controller/response_collector.rb
45
76
  - lib/resource_controller/singleton.rb
46
- - lib/resource_controller/version.rb
47
77
  - lib/resource_controller.rb
48
78
  - lib/urligence.rb
49
79
  - test/app
@@ -52,6 +82,8 @@ files:
52
82
  - test/app/controllers/application.rb
53
83
  - test/app/controllers/cms
54
84
  - test/app/controllers/cms/options_controller.rb
85
+ - test/app/controllers/cms/personnel_controller.rb
86
+ - test/app/controllers/cms/photos_controller.rb
55
87
  - test/app/controllers/cms/products_controller.rb
56
88
  - test/app/controllers/comments_controller.rb
57
89
  - test/app/controllers/images_controller.rb
@@ -83,6 +115,7 @@ files:
83
115
  - test/app/models/comment.rb
84
116
  - test/app/models/image.rb
85
117
  - test/app/models/option.rb
118
+ - test/app/models/personnel.rb
86
119
  - test/app/models/photo.rb
87
120
  - test/app/models/post.rb
88
121
  - test/app/models/product.rb
@@ -102,6 +135,11 @@ files:
102
135
  - test/app/views/cms/options/index.rhtml
103
136
  - test/app/views/cms/options/new.rhtml
104
137
  - test/app/views/cms/options/show.rhtml
138
+ - test/app/views/cms/photos
139
+ - test/app/views/cms/photos/edit.rhtml
140
+ - test/app/views/cms/photos/index.rhtml
141
+ - test/app/views/cms/photos/new.rhtml
142
+ - test/app/views/cms/photos/show.rhtml
105
143
  - test/app/views/cms/products
106
144
  - test/app/views/cms/products/edit.rhtml
107
145
  - test/app/views/cms/products/index.rhtml
@@ -174,6 +212,8 @@ files:
174
212
  - test/config/environments
175
213
  - test/config/environments/development.rb
176
214
  - test/config/environments/test.rb
215
+ - test/config/initializers
216
+ - test/config/initializers/inflections.rb
177
217
  - test/config/routes.rb
178
218
  - test/db
179
219
  - test/db/migrate
@@ -189,11 +229,13 @@ files:
189
229
  - test/db/migrate/010_create_projects.rb
190
230
  - test/db/migrate/011_create_images.rb
191
231
  - test/db/migrate/012_create_users.rb
232
+ - test/db/migrate/013_create_personnel.rb
233
+ - test/db/migrate/014_add_personnel_id_to_photos.rb
192
234
  - test/db/schema.rb
235
+ - test/db/test.sqlite3
193
236
  - test/log
194
237
  - test/log/development.log
195
238
  - test/log/test.log
196
- - test/log/thin.log
197
239
  - test/Rakefile
198
240
  - test/script
199
241
  - test/script/console
@@ -206,6 +248,7 @@ files:
206
248
  - test/test/fixtures/comments.yml
207
249
  - test/test/fixtures/images.yml
208
250
  - test/test/fixtures/options.yml
251
+ - test/test/fixtures/personnel.yml
209
252
  - test/test/fixtures/photos.yml
210
253
  - test/test/fixtures/photos_tags.yml
211
254
  - test/test/fixtures/posts.yml
@@ -217,6 +260,7 @@ files:
217
260
  - test/test/functional
218
261
  - test/test/functional/cms
219
262
  - test/test/functional/cms/options_controller_test.rb
263
+ - test/test/functional/cms/photos_controller_test.rb
220
264
  - test/test/functional/cms/products_controller_test.rb
221
265
  - test/test/functional/comments_controller_test.rb
222
266
  - test/test/functional/images_controller_test.rb
@@ -254,67 +298,11 @@ files:
254
298
  - test/test/unit/tag_test.rb
255
299
  - test/test/unit/urligence_test.rb
256
300
  - test/tmp
257
- - test/tmp/pids
258
301
  - test/vendor
259
302
  - test/vendor/gems
260
- - test/vendor/gems/resource_controller-0.5.2
261
- - test/vendor/plugins
262
- - test/vendor/plugins/shoulda
263
- - test/vendor/plugins/shoulda/bin
264
- - test/vendor/plugins/shoulda/bin/convert_to_should_syntax
265
- - test/vendor/plugins/shoulda/init.rb
266
- - test/vendor/plugins/shoulda/lib
267
- - test/vendor/plugins/shoulda/lib/shoulda
268
- - test/vendor/plugins/shoulda/lib/shoulda/active_record_helpers.rb
269
- - test/vendor/plugins/shoulda/lib/shoulda/color.rb
270
- - test/vendor/plugins/shoulda/lib/shoulda/controller_tests
271
- - test/vendor/plugins/shoulda/lib/shoulda/controller_tests/controller_tests.rb
272
- - test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats
273
- - test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/html.rb
274
- - test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/xml.rb
275
- - test/vendor/plugins/shoulda/lib/shoulda/gem
276
- - test/vendor/plugins/shoulda/lib/shoulda/gem/proc_extensions.rb
277
- - test/vendor/plugins/shoulda/lib/shoulda/gem/shoulda.rb
278
- - test/vendor/plugins/shoulda/lib/shoulda/general.rb
279
- - test/vendor/plugins/shoulda/lib/shoulda/private_helpers.rb
280
- - test/vendor/plugins/shoulda/lib/shoulda.rb
281
- - test/vendor/plugins/shoulda/Rakefile
282
- - test/vendor/plugins/shoulda/tasks
283
- - generators/scaffold_resource
284
- - generators/scaffold_resource/scaffold_resource_generator.rb
285
- - generators/scaffold_resource/templates
286
- - generators/scaffold_resource/templates/controller.rb
287
- - generators/scaffold_resource/templates/fixtures.yml
288
- - generators/scaffold_resource/templates/functional_test.rb
289
- - generators/scaffold_resource/templates/helper.rb
290
- - generators/scaffold_resource/templates/migration.rb
291
- - generators/scaffold_resource/templates/model.rb
292
- - generators/scaffold_resource/templates/old_migration.rb
293
- - generators/scaffold_resource/templates/rspec
294
- - generators/scaffold_resource/templates/rspec/functional_spec.rb
295
- - generators/scaffold_resource/templates/rspec/helper_spec.rb
296
- - generators/scaffold_resource/templates/rspec/routing_spec.rb
297
- - generators/scaffold_resource/templates/rspec/unit_spec.rb
298
- - generators/scaffold_resource/templates/rspec/views
299
- - generators/scaffold_resource/templates/rspec/views/edit_spec.rb
300
- - generators/scaffold_resource/templates/rspec/views/index_spec.rb
301
- - generators/scaffold_resource/templates/rspec/views/new_spec.rb
302
- - generators/scaffold_resource/templates/rspec/views/show_spec.rb
303
- - generators/scaffold_resource/templates/shoulda_functional_test.rb
304
- - generators/scaffold_resource/templates/unit_test.rb
305
- - generators/scaffold_resource/templates/view__form.erb
306
- - generators/scaffold_resource/templates/view__form.haml
307
- - generators/scaffold_resource/templates/view_edit.erb
308
- - generators/scaffold_resource/templates/view_edit.haml
309
- - generators/scaffold_resource/templates/view_index.erb
310
- - generators/scaffold_resource/templates/view_index.haml
311
- - generators/scaffold_resource/templates/view_new.erb
312
- - generators/scaffold_resource/templates/view_new.haml
313
- - generators/scaffold_resource/templates/view_show.erb
314
- - generators/scaffold_resource/templates/view_show.haml
315
- - generators/scaffold_resource/USAGE
303
+ - test/vendor/gems/resource_controller-10.0.0
316
304
  - rails/init.rb
317
- has_rdoc: true
305
+ has_rdoc: false
318
306
  homepage: http://jamesgolick.com/resource_controller
319
307
  post_install_message:
320
308
  rdoc_options: []
@@ -325,7 +313,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
325
313
  requirements:
326
314
  - - ">="
327
315
  - !ruby/object:Gem::Version
328
- version: 1.8.5
316
+ version: "0"
329
317
  version:
330
318
  required_rubygems_version: !ruby/object:Gem::Requirement
331
319
  requirements:
@@ -335,10 +323,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
335
323
  version:
336
324
  requirements: []
337
325
 
338
- rubyforge_project: giraffesoft
326
+ rubyforge_project:
339
327
  rubygems_version: 1.2.0
340
328
  signing_key:
341
329
  specification_version: 2
342
- summary: resource_controller makes RESTful controllers easier, more maintainable, and super readable. With the RESTful controller pattern hidden away, you can focus on what makes your controller special.
330
+ summary: Rails RESTful controller abstraction plugin.
343
331
  test_files: []
344
332