resource_controller 0.5.3 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +18 -14
- data/VERSION.yml +5 -0
- data/generators/scaffold_resource/templates/rspec/routing_spec.rb +8 -8
- data/generators/scaffold_resource/templates/rspec/views/index_spec.rb +2 -2
- data/lib/resource_controller.rb +5 -14
- data/lib/resource_controller/base.rb +2 -2
- data/lib/resource_controller/class_methods.rb +2 -2
- data/lib/resource_controller/controller.rb +3 -2
- data/lib/resource_controller/helpers.rb +0 -6
- data/lib/resource_controller/helpers/nested.rb +1 -1
- data/lib/resource_controller/singleton.rb +2 -2
- data/test/app/controllers/{application.rb → application_controller.rb} +0 -2
- data/test/app/controllers/cms/personnel_controller.rb +2 -0
- data/test/app/controllers/cms/photos_controller.rb +6 -0
- data/test/app/controllers/photos_controller.rb +1 -0
- data/test/app/models/personnel.rb +3 -0
- data/test/app/models/photo.rb +1 -0
- data/test/app/views/cms/photos/edit.rhtml +17 -0
- data/test/app/views/cms/photos/index.rhtml +20 -0
- data/test/app/views/cms/photos/new.rhtml +16 -0
- data/test/app/views/cms/photos/show.rhtml +8 -0
- data/test/config/boot.rb +6 -5
- data/test/config/database.yml +6 -10
- data/test/config/environment.rb +4 -4
- data/test/config/environments/development.rb +0 -4
- data/test/config/initializers/inflections.rb +14 -0
- data/test/config/routes.rb +3 -0
- data/test/db/migrate/013_create_personnel.rb +11 -0
- data/test/db/migrate/014_add_personnel_id_to_photos.rb +9 -0
- data/test/db/schema.rb +9 -3
- data/test/test/fixtures/personnel.yml +5 -0
- data/test/test/functional/cms/options_controller_test.rb +1 -1
- data/test/test/functional/cms/photos_controller_test.rb +43 -0
- data/test/test/functional/cms/products_controller_test.rb +1 -1
- data/test/test/functional/comments_controller_test.rb +2 -9
- data/test/test/functional/images_controller_test.rb +1 -8
- data/test/test/functional/people_controller_test.rb +2 -9
- data/test/test/functional/photos_controller_test.rb +2 -9
- data/test/test/functional/posts_controller_test.rb +2 -9
- data/test/test/functional/projects_controller_test.rb +12 -9
- data/test/test/functional/somethings_controller_test.rb +2 -9
- data/test/test/functional/tags_controller_test.rb +2 -9
- data/test/test/functional/users_controller_test.rb +2 -9
- data/test/test/test_helper.rb +4 -3
- data/test/test/unit/accessors_test.rb +2 -2
- data/test/test/unit/account_test.rb +1 -1
- data/test/test/unit/action_options_test.rb +1 -1
- data/test/test/unit/base_test.rb +1 -1
- data/test/test/unit/comment_test.rb +1 -1
- data/test/test/unit/failable_action_options_test.rb +1 -1
- data/test/test/unit/helpers_test.rb +1 -1
- data/test/test/unit/image_test.rb +1 -1
- data/test/test/unit/option_test.rb +1 -1
- data/test/test/unit/photo_test.rb +1 -1
- data/test/test/unit/post_test.rb +1 -1
- data/test/test/unit/project_test.rb +1 -1
- data/test/test/unit/response_collector_test.rb +1 -1
- data/test/test/unit/something_test.rb +1 -1
- data/test/test/unit/tag_test.rb +1 -1
- data/test/test/unit/urligence_test.rb +1 -1
- metadata +162 -122
- data/Rakefile +0 -35
- data/init.rb +0 -1
- data/lib/resource_controller/version.rb +0 -9
- data/test/log/development.log +0 -3350
- data/test/log/test.log +0 -174947
- data/test/log/thin.log +0 -12
- data/test/vendor/plugins/shoulda/Rakefile +0 -32
- data/test/vendor/plugins/shoulda/bin/convert_to_should_syntax +0 -40
- data/test/vendor/plugins/shoulda/init.rb +0 -3
- data/test/vendor/plugins/shoulda/lib/shoulda.rb +0 -43
- data/test/vendor/plugins/shoulda/lib/shoulda/active_record_helpers.rb +0 -580
- data/test/vendor/plugins/shoulda/lib/shoulda/color.rb +0 -77
- data/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/controller_tests.rb +0 -467
- data/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/html.rb +0 -201
- data/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/xml.rb +0 -170
- data/test/vendor/plugins/shoulda/lib/shoulda/gem/proc_extensions.rb +0 -14
- data/test/vendor/plugins/shoulda/lib/shoulda/gem/shoulda.rb +0 -239
- data/test/vendor/plugins/shoulda/lib/shoulda/general.rb +0 -118
- data/test/vendor/plugins/shoulda/lib/shoulda/private_helpers.rb +0 -22
data/test/test/unit/tag_test.rb
CHANGED
@@ -5,7 +5,7 @@ class PhotosController
|
|
5
5
|
include Urligence
|
6
6
|
end
|
7
7
|
|
8
|
-
class UrligenceTest <
|
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: resource_controller
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Golick
|
@@ -9,24 +9,52 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2009-12-29 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description:
|
16
|
+
description: ""
|
17
17
|
email: james@giraffesoft.ca
|
18
18
|
executables: []
|
19
19
|
|
20
20
|
extensions: []
|
21
21
|
|
22
|
-
extra_rdoc_files:
|
23
|
-
|
22
|
+
extra_rdoc_files:
|
23
|
+
- LICENSE
|
24
|
+
- README.rdoc
|
24
25
|
files:
|
25
26
|
- README.rdoc
|
26
|
-
-
|
27
|
-
-
|
28
|
-
-
|
29
|
-
-
|
27
|
+
- VERSION.yml
|
28
|
+
- generators/scaffold_resource/USAGE
|
29
|
+
- generators/scaffold_resource/scaffold_resource_generator.rb
|
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/functional_spec.rb
|
38
|
+
- generators/scaffold_resource/templates/rspec/helper_spec.rb
|
39
|
+
- generators/scaffold_resource/templates/rspec/routing_spec.rb
|
40
|
+
- generators/scaffold_resource/templates/rspec/unit_spec.rb
|
41
|
+
- generators/scaffold_resource/templates/rspec/views/edit_spec.rb
|
42
|
+
- generators/scaffold_resource/templates/rspec/views/index_spec.rb
|
43
|
+
- generators/scaffold_resource/templates/rspec/views/new_spec.rb
|
44
|
+
- generators/scaffold_resource/templates/rspec/views/show_spec.rb
|
45
|
+
- generators/scaffold_resource/templates/shoulda_functional_test.rb
|
46
|
+
- generators/scaffold_resource/templates/unit_test.rb
|
47
|
+
- generators/scaffold_resource/templates/view__form.erb
|
48
|
+
- generators/scaffold_resource/templates/view__form.haml
|
49
|
+
- generators/scaffold_resource/templates/view_edit.erb
|
50
|
+
- generators/scaffold_resource/templates/view_edit.haml
|
51
|
+
- generators/scaffold_resource/templates/view_index.erb
|
52
|
+
- generators/scaffold_resource/templates/view_index.haml
|
53
|
+
- generators/scaffold_resource/templates/view_new.erb
|
54
|
+
- generators/scaffold_resource/templates/view_new.haml
|
55
|
+
- generators/scaffold_resource/templates/view_show.erb
|
56
|
+
- generators/scaffold_resource/templates/view_show.haml
|
57
|
+
- lib/resource_controller.rb
|
30
58
|
- lib/resource_controller/accessors.rb
|
31
59
|
- lib/resource_controller/action_options.rb
|
32
60
|
- lib/resource_controller/actions.rb
|
@@ -34,24 +62,22 @@ files:
|
|
34
62
|
- lib/resource_controller/class_methods.rb
|
35
63
|
- lib/resource_controller/controller.rb
|
36
64
|
- lib/resource_controller/failable_action_options.rb
|
37
|
-
- lib/resource_controller/helpers
|
65
|
+
- lib/resource_controller/helpers.rb
|
38
66
|
- lib/resource_controller/helpers/current_objects.rb
|
39
67
|
- lib/resource_controller/helpers/internal.rb
|
40
68
|
- lib/resource_controller/helpers/nested.rb
|
41
69
|
- lib/resource_controller/helpers/singleton_customizations.rb
|
42
70
|
- lib/resource_controller/helpers/urls.rb
|
43
|
-
- lib/resource_controller/helpers.rb
|
44
71
|
- lib/resource_controller/response_collector.rb
|
45
72
|
- lib/resource_controller/singleton.rb
|
46
|
-
- lib/resource_controller/version.rb
|
47
|
-
- lib/resource_controller.rb
|
48
73
|
- lib/urligence.rb
|
49
|
-
-
|
50
|
-
- test/
|
74
|
+
- rails/init.rb
|
75
|
+
- test/Rakefile
|
51
76
|
- test/app/controllers/accounts_controller.rb
|
52
|
-
- test/app/controllers/
|
53
|
-
- test/app/controllers/cms
|
77
|
+
- test/app/controllers/application_controller.rb
|
54
78
|
- test/app/controllers/cms/options_controller.rb
|
79
|
+
- test/app/controllers/cms/personnel_controller.rb
|
80
|
+
- test/app/controllers/cms/photos_controller.rb
|
55
81
|
- test/app/controllers/cms/products_controller.rb
|
56
82
|
- test/app/controllers/comments_controller.rb
|
57
83
|
- test/app/controllers/images_controller.rb
|
@@ -63,10 +89,8 @@ files:
|
|
63
89
|
- test/app/controllers/somethings_controller.rb
|
64
90
|
- test/app/controllers/tags_controller.rb
|
65
91
|
- test/app/controllers/users_controller.rb
|
66
|
-
- test/app/helpers
|
67
92
|
- test/app/helpers/accounts_helper.rb
|
68
93
|
- test/app/helpers/application_helper.rb
|
69
|
-
- test/app/helpers/cms
|
70
94
|
- test/app/helpers/cms/products_helper.rb
|
71
95
|
- test/app/helpers/comments_helper.rb
|
72
96
|
- test/app/helpers/images_helper.rb
|
@@ -78,11 +102,11 @@ files:
|
|
78
102
|
- test/app/helpers/somethings_helper.rb
|
79
103
|
- test/app/helpers/tags_helper.rb
|
80
104
|
- test/app/helpers/users_helper.rb
|
81
|
-
- test/app/models
|
82
105
|
- test/app/models/account.rb
|
83
106
|
- test/app/models/comment.rb
|
84
107
|
- test/app/models/image.rb
|
85
108
|
- test/app/models/option.rb
|
109
|
+
- test/app/models/personnel.rb
|
86
110
|
- test/app/models/photo.rb
|
87
111
|
- test/app/models/post.rb
|
88
112
|
- test/app/models/product.rb
|
@@ -90,33 +114,29 @@ files:
|
|
90
114
|
- test/app/models/something.rb
|
91
115
|
- test/app/models/tag.rb
|
92
116
|
- test/app/models/user.rb
|
93
|
-
- test/app/views
|
94
|
-
- test/app/views/accounts
|
95
117
|
- test/app/views/accounts/_form.html.erb
|
96
118
|
- test/app/views/accounts/edit.html.erb
|
97
119
|
- test/app/views/accounts/new.html.erb
|
98
120
|
- test/app/views/accounts/show.html.erb
|
99
|
-
- test/app/views/cms
|
100
|
-
- test/app/views/cms/options
|
101
121
|
- test/app/views/cms/options/edit.rhtml
|
102
122
|
- test/app/views/cms/options/index.rhtml
|
103
123
|
- test/app/views/cms/options/new.rhtml
|
104
124
|
- test/app/views/cms/options/show.rhtml
|
105
|
-
- test/app/views/cms/
|
125
|
+
- test/app/views/cms/photos/edit.rhtml
|
126
|
+
- test/app/views/cms/photos/index.rhtml
|
127
|
+
- test/app/views/cms/photos/new.rhtml
|
128
|
+
- test/app/views/cms/photos/show.rhtml
|
106
129
|
- test/app/views/cms/products/edit.rhtml
|
107
130
|
- test/app/views/cms/products/index.rhtml
|
108
131
|
- test/app/views/cms/products/new.rhtml
|
109
132
|
- test/app/views/cms/products/show.rhtml
|
110
|
-
- test/app/views/comments
|
111
133
|
- test/app/views/comments/edit.rhtml
|
112
134
|
- test/app/views/comments/index.rhtml
|
113
135
|
- test/app/views/comments/new.rhtml
|
114
136
|
- test/app/views/comments/show.rhtml
|
115
|
-
- test/app/views/images
|
116
137
|
- test/app/views/images/_form.html.erb
|
117
138
|
- test/app/views/images/edit.html.erb
|
118
139
|
- test/app/views/images/new.html.erb
|
119
|
-
- test/app/views/layouts
|
120
140
|
- test/app/views/layouts/application.rhtml
|
121
141
|
- test/app/views/layouts/comments.rhtml
|
122
142
|
- test/app/views/layouts/options.rhtml
|
@@ -125,58 +145,47 @@ files:
|
|
125
145
|
- test/app/views/layouts/projects.rhtml
|
126
146
|
- test/app/views/layouts/somethings.rhtml
|
127
147
|
- test/app/views/layouts/tags.rhtml
|
128
|
-
- test/app/views/options
|
129
148
|
- test/app/views/options/_form.html.erb
|
130
149
|
- test/app/views/options/edit.html.erb
|
131
150
|
- test/app/views/options/index.html.erb
|
132
151
|
- test/app/views/options/new.html.erb
|
133
152
|
- test/app/views/options/show.html.erb
|
134
|
-
- test/app/views/people
|
135
153
|
- test/app/views/people/edit.rhtml
|
136
154
|
- test/app/views/people/index.rhtml
|
137
155
|
- test/app/views/people/new.rhtml
|
138
156
|
- test/app/views/people/show.rhtml
|
139
|
-
- test/app/views/photos
|
140
157
|
- test/app/views/photos/edit.rhtml
|
141
158
|
- test/app/views/photos/index.rhtml
|
142
159
|
- test/app/views/photos/new.rhtml
|
143
160
|
- test/app/views/photos/show.rhtml
|
144
|
-
- test/app/views/posts
|
145
161
|
- test/app/views/posts/edit.rhtml
|
146
162
|
- test/app/views/posts/index.rhtml
|
147
163
|
- test/app/views/posts/new.rhtml
|
148
164
|
- test/app/views/posts/show.rhtml
|
149
|
-
- test/app/views/projects
|
150
165
|
- test/app/views/projects/edit.rhtml
|
151
166
|
- test/app/views/projects/index.rhtml
|
152
167
|
- test/app/views/projects/new.rhtml
|
153
168
|
- test/app/views/projects/show.rhtml
|
154
|
-
- test/app/views/somethings
|
155
169
|
- test/app/views/somethings/edit.rhtml
|
156
170
|
- test/app/views/somethings/index.rhtml
|
157
171
|
- test/app/views/somethings/new.rhtml
|
158
172
|
- test/app/views/somethings/show.rhtml
|
159
|
-
- test/app/views/tags
|
160
173
|
- test/app/views/tags/edit.rhtml
|
161
174
|
- test/app/views/tags/index.rhtml
|
162
175
|
- test/app/views/tags/index.rjs
|
163
176
|
- test/app/views/tags/new.rhtml
|
164
177
|
- test/app/views/tags/show.rhtml
|
165
|
-
- test/app/views/users
|
166
178
|
- test/app/views/users/edit.rhtml
|
167
179
|
- test/app/views/users/index.rhtml
|
168
180
|
- test/app/views/users/new.rhtml
|
169
181
|
- test/app/views/users/show.rhtml
|
170
|
-
- test/config
|
171
182
|
- test/config/boot.rb
|
172
183
|
- test/config/database.yml
|
173
184
|
- test/config/environment.rb
|
174
|
-
- test/config/environments
|
175
185
|
- test/config/environments/development.rb
|
176
186
|
- test/config/environments/test.rb
|
187
|
+
- test/config/initializers/inflections.rb
|
177
188
|
- test/config/routes.rb
|
178
|
-
- test/db
|
179
|
-
- test/db/migrate
|
180
189
|
- test/db/migrate/001_create_posts.rb
|
181
190
|
- test/db/migrate/002_create_products.rb
|
182
191
|
- test/db/migrate/003_create_comments.rb
|
@@ -189,23 +198,18 @@ files:
|
|
189
198
|
- test/db/migrate/010_create_projects.rb
|
190
199
|
- test/db/migrate/011_create_images.rb
|
191
200
|
- test/db/migrate/012_create_users.rb
|
201
|
+
- test/db/migrate/013_create_personnel.rb
|
202
|
+
- test/db/migrate/014_add_personnel_id_to_photos.rb
|
192
203
|
- test/db/schema.rb
|
193
|
-
- test/log
|
194
|
-
- test/log/development.log
|
195
|
-
- test/log/test.log
|
196
|
-
- test/log/thin.log
|
197
|
-
- test/Rakefile
|
198
|
-
- test/script
|
199
204
|
- test/script/console
|
200
205
|
- test/script/destroy
|
201
206
|
- test/script/generate
|
202
207
|
- test/script/server
|
203
|
-
- test/test
|
204
|
-
- test/test/fixtures
|
205
208
|
- test/test/fixtures/accounts.yml
|
206
209
|
- test/test/fixtures/comments.yml
|
207
210
|
- test/test/fixtures/images.yml
|
208
211
|
- test/test/fixtures/options.yml
|
212
|
+
- test/test/fixtures/personnel.yml
|
209
213
|
- test/test/fixtures/photos.yml
|
210
214
|
- test/test/fixtures/photos_tags.yml
|
211
215
|
- test/test/fixtures/posts.yml
|
@@ -214,9 +218,8 @@ files:
|
|
214
218
|
- test/test/fixtures/somethings.yml
|
215
219
|
- test/test/fixtures/tags.yml
|
216
220
|
- test/test/fixtures/users.yml
|
217
|
-
- test/test/functional
|
218
|
-
- test/test/functional/cms
|
219
221
|
- test/test/functional/cms/options_controller_test.rb
|
222
|
+
- test/test/functional/cms/photos_controller_test.rb
|
220
223
|
- test/test/functional/cms/products_controller_test.rb
|
221
224
|
- test/test/functional/comments_controller_test.rb
|
222
225
|
- test/test/functional/images_controller_test.rb
|
@@ -228,14 +231,12 @@ files:
|
|
228
231
|
- test/test/functional/tags_controller_test.rb
|
229
232
|
- test/test/functional/users_controller_test.rb
|
230
233
|
- test/test/test_helper.rb
|
231
|
-
- test/test/unit
|
232
234
|
- test/test/unit/accessors_test.rb
|
233
235
|
- test/test/unit/account_test.rb
|
234
236
|
- test/test/unit/action_options_test.rb
|
235
237
|
- test/test/unit/base_test.rb
|
236
238
|
- test/test/unit/comment_test.rb
|
237
239
|
- test/test/unit/failable_action_options_test.rb
|
238
|
-
- test/test/unit/helpers
|
239
240
|
- test/test/unit/helpers/current_objects_test.rb
|
240
241
|
- test/test/unit/helpers/internal_test.rb
|
241
242
|
- test/test/unit/helpers/nested_test.rb
|
@@ -253,79 +254,21 @@ files:
|
|
253
254
|
- test/test/unit/something_test.rb
|
254
255
|
- test/test/unit/tag_test.rb
|
255
256
|
- test/test/unit/urligence_test.rb
|
256
|
-
-
|
257
|
-
- test/tmp/pids
|
258
|
-
- test/vendor
|
259
|
-
- 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
|
316
|
-
- rails/init.rb
|
257
|
+
- LICENSE
|
317
258
|
has_rdoc: true
|
318
259
|
homepage: http://jamesgolick.com/resource_controller
|
319
|
-
|
320
|
-
rdoc_options: []
|
260
|
+
licenses: []
|
321
261
|
|
262
|
+
post_install_message:
|
263
|
+
rdoc_options:
|
264
|
+
- --charset=UTF-8
|
322
265
|
require_paths:
|
323
266
|
- lib
|
324
267
|
required_ruby_version: !ruby/object:Gem::Requirement
|
325
268
|
requirements:
|
326
269
|
- - ">="
|
327
270
|
- !ruby/object:Gem::Version
|
328
|
-
version:
|
271
|
+
version: "0"
|
329
272
|
version:
|
330
273
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
331
274
|
requirements:
|
@@ -335,10 +278,107 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
335
278
|
version:
|
336
279
|
requirements: []
|
337
280
|
|
338
|
-
rubyforge_project:
|
339
|
-
rubygems_version: 1.
|
281
|
+
rubyforge_project:
|
282
|
+
rubygems_version: 1.3.5
|
340
283
|
signing_key:
|
341
|
-
specification_version:
|
342
|
-
summary:
|
343
|
-
test_files:
|
344
|
-
|
284
|
+
specification_version: 3
|
285
|
+
summary: Rails RESTful controller abstraction plugin.
|
286
|
+
test_files:
|
287
|
+
- test/app/controllers/accounts_controller.rb
|
288
|
+
- test/app/controllers/application_controller.rb
|
289
|
+
- test/app/controllers/cms/options_controller.rb
|
290
|
+
- test/app/controllers/cms/personnel_controller.rb
|
291
|
+
- test/app/controllers/cms/photos_controller.rb
|
292
|
+
- test/app/controllers/cms/products_controller.rb
|
293
|
+
- test/app/controllers/comments_controller.rb
|
294
|
+
- test/app/controllers/images_controller.rb
|
295
|
+
- test/app/controllers/options_controller.rb
|
296
|
+
- test/app/controllers/people_controller.rb
|
297
|
+
- test/app/controllers/photos_controller.rb
|
298
|
+
- test/app/controllers/posts_controller.rb
|
299
|
+
- test/app/controllers/projects_controller.rb
|
300
|
+
- test/app/controllers/somethings_controller.rb
|
301
|
+
- test/app/controllers/tags_controller.rb
|
302
|
+
- test/app/controllers/users_controller.rb
|
303
|
+
- test/app/helpers/accounts_helper.rb
|
304
|
+
- test/app/helpers/application_helper.rb
|
305
|
+
- test/app/helpers/cms/products_helper.rb
|
306
|
+
- test/app/helpers/comments_helper.rb
|
307
|
+
- test/app/helpers/images_helper.rb
|
308
|
+
- test/app/helpers/options_helper.rb
|
309
|
+
- test/app/helpers/people_helper.rb
|
310
|
+
- test/app/helpers/photos_helper.rb
|
311
|
+
- test/app/helpers/posts_helper.rb
|
312
|
+
- test/app/helpers/projects_helper.rb
|
313
|
+
- test/app/helpers/somethings_helper.rb
|
314
|
+
- test/app/helpers/tags_helper.rb
|
315
|
+
- test/app/helpers/users_helper.rb
|
316
|
+
- test/app/models/account.rb
|
317
|
+
- test/app/models/comment.rb
|
318
|
+
- test/app/models/image.rb
|
319
|
+
- test/app/models/option.rb
|
320
|
+
- test/app/models/personnel.rb
|
321
|
+
- test/app/models/photo.rb
|
322
|
+
- test/app/models/post.rb
|
323
|
+
- test/app/models/product.rb
|
324
|
+
- test/app/models/project.rb
|
325
|
+
- test/app/models/something.rb
|
326
|
+
- test/app/models/tag.rb
|
327
|
+
- test/app/models/user.rb
|
328
|
+
- test/config/boot.rb
|
329
|
+
- test/config/environment.rb
|
330
|
+
- test/config/environments/development.rb
|
331
|
+
- test/config/environments/test.rb
|
332
|
+
- test/config/initializers/inflections.rb
|
333
|
+
- test/config/routes.rb
|
334
|
+
- test/db/migrate/001_create_posts.rb
|
335
|
+
- test/db/migrate/002_create_products.rb
|
336
|
+
- test/db/migrate/003_create_comments.rb
|
337
|
+
- test/db/migrate/004_create_options.rb
|
338
|
+
- test/db/migrate/005_create_photos.rb
|
339
|
+
- test/db/migrate/006_create_tags.rb
|
340
|
+
- test/db/migrate/007_create_somethings.rb
|
341
|
+
- test/db/migrate/008_create_accounts.rb
|
342
|
+
- test/db/migrate/009_add_account_id_to_photos.rb
|
343
|
+
- test/db/migrate/010_create_projects.rb
|
344
|
+
- test/db/migrate/011_create_images.rb
|
345
|
+
- test/db/migrate/012_create_users.rb
|
346
|
+
- test/db/migrate/013_create_personnel.rb
|
347
|
+
- test/db/migrate/014_add_personnel_id_to_photos.rb
|
348
|
+
- test/db/schema.rb
|
349
|
+
- test/test/functional/cms/options_controller_test.rb
|
350
|
+
- test/test/functional/cms/photos_controller_test.rb
|
351
|
+
- test/test/functional/cms/products_controller_test.rb
|
352
|
+
- test/test/functional/comments_controller_test.rb
|
353
|
+
- test/test/functional/images_controller_test.rb
|
354
|
+
- test/test/functional/people_controller_test.rb
|
355
|
+
- test/test/functional/photos_controller_test.rb
|
356
|
+
- test/test/functional/posts_controller_test.rb
|
357
|
+
- test/test/functional/projects_controller_test.rb
|
358
|
+
- test/test/functional/somethings_controller_test.rb
|
359
|
+
- test/test/functional/tags_controller_test.rb
|
360
|
+
- test/test/functional/users_controller_test.rb
|
361
|
+
- test/test/test_helper.rb
|
362
|
+
- test/test/unit/accessors_test.rb
|
363
|
+
- test/test/unit/account_test.rb
|
364
|
+
- test/test/unit/action_options_test.rb
|
365
|
+
- test/test/unit/base_test.rb
|
366
|
+
- test/test/unit/comment_test.rb
|
367
|
+
- test/test/unit/failable_action_options_test.rb
|
368
|
+
- test/test/unit/helpers/current_objects_test.rb
|
369
|
+
- test/test/unit/helpers/internal_test.rb
|
370
|
+
- test/test/unit/helpers/nested_test.rb
|
371
|
+
- test/test/unit/helpers/singleton_current_objects_test.rb
|
372
|
+
- test/test/unit/helpers/singleton_nested_test.rb
|
373
|
+
- test/test/unit/helpers/singleton_urls_test.rb
|
374
|
+
- test/test/unit/helpers/urls_test.rb
|
375
|
+
- test/test/unit/helpers_test.rb
|
376
|
+
- test/test/unit/image_test.rb
|
377
|
+
- test/test/unit/option_test.rb
|
378
|
+
- test/test/unit/photo_test.rb
|
379
|
+
- test/test/unit/post_test.rb
|
380
|
+
- test/test/unit/project_test.rb
|
381
|
+
- test/test/unit/response_collector_test.rb
|
382
|
+
- test/test/unit/something_test.rb
|
383
|
+
- test/test/unit/tag_test.rb
|
384
|
+
- test/test/unit/urligence_test.rb
|