railapp-resource_controller 0.5.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 (2) hide show
  1. data/Rakefile +10 -0
  2. metadata +344 -0
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5
+
6
+ require 'rake'
7
+ require 'rake/testtask'
8
+ require 'rake/rdoctask'
9
+
10
+ require 'tasks/rails'
metadata ADDED
@@ -0,0 +1,344 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: railapp-resource_controller
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.3
5
+ platform: ruby
6
+ authors:
7
+ - James Golick
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-09-21 21:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Rails RESTful controller abstraction plugin.
17
+ email: james@giraffesoft.ca
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - README.rdoc
26
+ - LICENSE
27
+ - init.rb
28
+ - Rakefile
29
+ - lib/resource_controller
30
+ - lib/resource_controller/accessors.rb
31
+ - lib/resource_controller/action_options.rb
32
+ - lib/resource_controller/actions.rb
33
+ - lib/resource_controller/base.rb
34
+ - lib/resource_controller/class_methods.rb
35
+ - lib/resource_controller/controller.rb
36
+ - lib/resource_controller/failable_action_options.rb
37
+ - lib/resource_controller/helpers
38
+ - lib/resource_controller/helpers/current_objects.rb
39
+ - lib/resource_controller/helpers/internal.rb
40
+ - lib/resource_controller/helpers/nested.rb
41
+ - lib/resource_controller/helpers/singleton_customizations.rb
42
+ - lib/resource_controller/helpers/urls.rb
43
+ - lib/resource_controller/helpers.rb
44
+ - lib/resource_controller/response_collector.rb
45
+ - lib/resource_controller/singleton.rb
46
+ - lib/resource_controller/version.rb
47
+ - lib/resource_controller.rb
48
+ - lib/urligence.rb
49
+ - test/app
50
+ - test/app/controllers
51
+ - test/app/controllers/accounts_controller.rb
52
+ - test/app/controllers/application.rb
53
+ - test/app/controllers/cms
54
+ - test/app/controllers/cms/options_controller.rb
55
+ - test/app/controllers/cms/products_controller.rb
56
+ - test/app/controllers/comments_controller.rb
57
+ - test/app/controllers/images_controller.rb
58
+ - test/app/controllers/options_controller.rb
59
+ - test/app/controllers/people_controller.rb
60
+ - test/app/controllers/photos_controller.rb
61
+ - test/app/controllers/posts_controller.rb
62
+ - test/app/controllers/projects_controller.rb
63
+ - test/app/controllers/somethings_controller.rb
64
+ - test/app/controllers/tags_controller.rb
65
+ - test/app/controllers/users_controller.rb
66
+ - test/app/helpers
67
+ - test/app/helpers/accounts_helper.rb
68
+ - test/app/helpers/application_helper.rb
69
+ - test/app/helpers/cms
70
+ - test/app/helpers/cms/products_helper.rb
71
+ - test/app/helpers/comments_helper.rb
72
+ - test/app/helpers/images_helper.rb
73
+ - test/app/helpers/options_helper.rb
74
+ - test/app/helpers/people_helper.rb
75
+ - test/app/helpers/photos_helper.rb
76
+ - test/app/helpers/posts_helper.rb
77
+ - test/app/helpers/projects_helper.rb
78
+ - test/app/helpers/somethings_helper.rb
79
+ - test/app/helpers/tags_helper.rb
80
+ - test/app/helpers/users_helper.rb
81
+ - test/app/models
82
+ - test/app/models/account.rb
83
+ - test/app/models/comment.rb
84
+ - test/app/models/image.rb
85
+ - test/app/models/option.rb
86
+ - test/app/models/photo.rb
87
+ - test/app/models/post.rb
88
+ - test/app/models/product.rb
89
+ - test/app/models/project.rb
90
+ - test/app/models/something.rb
91
+ - test/app/models/tag.rb
92
+ - test/app/models/user.rb
93
+ - test/app/views
94
+ - test/app/views/accounts
95
+ - test/app/views/accounts/_form.html.erb
96
+ - test/app/views/accounts/edit.html.erb
97
+ - test/app/views/accounts/new.html.erb
98
+ - test/app/views/accounts/show.html.erb
99
+ - test/app/views/cms
100
+ - test/app/views/cms/options
101
+ - test/app/views/cms/options/edit.rhtml
102
+ - test/app/views/cms/options/index.rhtml
103
+ - test/app/views/cms/options/new.rhtml
104
+ - test/app/views/cms/options/show.rhtml
105
+ - test/app/views/cms/products
106
+ - test/app/views/cms/products/edit.rhtml
107
+ - test/app/views/cms/products/index.rhtml
108
+ - test/app/views/cms/products/new.rhtml
109
+ - test/app/views/cms/products/show.rhtml
110
+ - test/app/views/comments
111
+ - test/app/views/comments/edit.rhtml
112
+ - test/app/views/comments/index.rhtml
113
+ - test/app/views/comments/new.rhtml
114
+ - test/app/views/comments/show.rhtml
115
+ - test/app/views/images
116
+ - test/app/views/images/_form.html.erb
117
+ - test/app/views/images/edit.html.erb
118
+ - test/app/views/images/new.html.erb
119
+ - test/app/views/layouts
120
+ - test/app/views/layouts/application.rhtml
121
+ - test/app/views/layouts/comments.rhtml
122
+ - test/app/views/layouts/options.rhtml
123
+ - test/app/views/layouts/people.rhtml
124
+ - test/app/views/layouts/photos.rhtml
125
+ - test/app/views/layouts/projects.rhtml
126
+ - test/app/views/layouts/somethings.rhtml
127
+ - test/app/views/layouts/tags.rhtml
128
+ - test/app/views/options
129
+ - test/app/views/options/_form.html.erb
130
+ - test/app/views/options/edit.html.erb
131
+ - test/app/views/options/index.html.erb
132
+ - test/app/views/options/new.html.erb
133
+ - test/app/views/options/show.html.erb
134
+ - test/app/views/people
135
+ - test/app/views/people/edit.rhtml
136
+ - test/app/views/people/index.rhtml
137
+ - test/app/views/people/new.rhtml
138
+ - test/app/views/people/show.rhtml
139
+ - test/app/views/photos
140
+ - test/app/views/photos/edit.rhtml
141
+ - test/app/views/photos/index.rhtml
142
+ - test/app/views/photos/new.rhtml
143
+ - test/app/views/photos/show.rhtml
144
+ - test/app/views/posts
145
+ - test/app/views/posts/edit.rhtml
146
+ - test/app/views/posts/index.rhtml
147
+ - test/app/views/posts/new.rhtml
148
+ - test/app/views/posts/show.rhtml
149
+ - test/app/views/projects
150
+ - test/app/views/projects/edit.rhtml
151
+ - test/app/views/projects/index.rhtml
152
+ - test/app/views/projects/new.rhtml
153
+ - test/app/views/projects/show.rhtml
154
+ - test/app/views/somethings
155
+ - test/app/views/somethings/edit.rhtml
156
+ - test/app/views/somethings/index.rhtml
157
+ - test/app/views/somethings/new.rhtml
158
+ - test/app/views/somethings/show.rhtml
159
+ - test/app/views/tags
160
+ - test/app/views/tags/edit.rhtml
161
+ - test/app/views/tags/index.rhtml
162
+ - test/app/views/tags/index.rjs
163
+ - test/app/views/tags/new.rhtml
164
+ - test/app/views/tags/show.rhtml
165
+ - test/app/views/users
166
+ - test/app/views/users/edit.rhtml
167
+ - test/app/views/users/index.rhtml
168
+ - test/app/views/users/new.rhtml
169
+ - test/app/views/users/show.rhtml
170
+ - test/config
171
+ - test/config/boot.rb
172
+ - test/config/database.yml
173
+ - test/config/environment.rb
174
+ - test/config/environments
175
+ - test/config/environments/development.rb
176
+ - test/config/environments/test.rb
177
+ - test/config/routes.rb
178
+ - test/db
179
+ - test/db/migrate
180
+ - test/db/migrate/001_create_posts.rb
181
+ - test/db/migrate/002_create_products.rb
182
+ - test/db/migrate/003_create_comments.rb
183
+ - test/db/migrate/004_create_options.rb
184
+ - test/db/migrate/005_create_photos.rb
185
+ - test/db/migrate/006_create_tags.rb
186
+ - test/db/migrate/007_create_somethings.rb
187
+ - test/db/migrate/008_create_accounts.rb
188
+ - test/db/migrate/009_add_account_id_to_photos.rb
189
+ - test/db/migrate/010_create_projects.rb
190
+ - test/db/migrate/011_create_images.rb
191
+ - test/db/migrate/012_create_users.rb
192
+ - 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
+ - test/script/console
200
+ - test/script/destroy
201
+ - test/script/generate
202
+ - test/script/server
203
+ - test/test
204
+ - test/test/fixtures
205
+ - test/test/fixtures/accounts.yml
206
+ - test/test/fixtures/comments.yml
207
+ - test/test/fixtures/images.yml
208
+ - test/test/fixtures/options.yml
209
+ - test/test/fixtures/photos.yml
210
+ - test/test/fixtures/photos_tags.yml
211
+ - test/test/fixtures/posts.yml
212
+ - test/test/fixtures/products.yml
213
+ - test/test/fixtures/projects.yml
214
+ - test/test/fixtures/somethings.yml
215
+ - test/test/fixtures/tags.yml
216
+ - test/test/fixtures/users.yml
217
+ - test/test/functional
218
+ - test/test/functional/cms
219
+ - test/test/functional/cms/options_controller_test.rb
220
+ - test/test/functional/cms/products_controller_test.rb
221
+ - test/test/functional/comments_controller_test.rb
222
+ - test/test/functional/images_controller_test.rb
223
+ - test/test/functional/people_controller_test.rb
224
+ - test/test/functional/photos_controller_test.rb
225
+ - test/test/functional/posts_controller_test.rb
226
+ - test/test/functional/projects_controller_test.rb
227
+ - test/test/functional/somethings_controller_test.rb
228
+ - test/test/functional/tags_controller_test.rb
229
+ - test/test/functional/users_controller_test.rb
230
+ - test/test/test_helper.rb
231
+ - test/test/unit
232
+ - test/test/unit/accessors_test.rb
233
+ - test/test/unit/account_test.rb
234
+ - test/test/unit/action_options_test.rb
235
+ - test/test/unit/base_test.rb
236
+ - test/test/unit/comment_test.rb
237
+ - test/test/unit/failable_action_options_test.rb
238
+ - test/test/unit/helpers
239
+ - test/test/unit/helpers/current_objects_test.rb
240
+ - test/test/unit/helpers/internal_test.rb
241
+ - test/test/unit/helpers/nested_test.rb
242
+ - test/test/unit/helpers/singleton_current_objects_test.rb
243
+ - test/test/unit/helpers/singleton_nested_test.rb
244
+ - test/test/unit/helpers/singleton_urls_test.rb
245
+ - test/test/unit/helpers/urls_test.rb
246
+ - test/test/unit/helpers_test.rb
247
+ - test/test/unit/image_test.rb
248
+ - test/test/unit/option_test.rb
249
+ - test/test/unit/photo_test.rb
250
+ - test/test/unit/post_test.rb
251
+ - test/test/unit/project_test.rb
252
+ - test/test/unit/response_collector_test.rb
253
+ - test/test/unit/something_test.rb
254
+ - test/test/unit/tag_test.rb
255
+ - test/test/unit/urligence_test.rb
256
+ - test/tmp
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
317
+ has_rdoc: true
318
+ homepage: http://jamesgolick.com/resource_controller
319
+ post_install_message:
320
+ rdoc_options: []
321
+
322
+ require_paths:
323
+ - lib
324
+ required_ruby_version: !ruby/object:Gem::Requirement
325
+ requirements:
326
+ - - ">="
327
+ - !ruby/object:Gem::Version
328
+ version: 1.8.5
329
+ version:
330
+ required_rubygems_version: !ruby/object:Gem::Requirement
331
+ requirements:
332
+ - - ">="
333
+ - !ruby/object:Gem::Version
334
+ version: "0"
335
+ version:
336
+ requirements: []
337
+
338
+ rubyforge_project: giraffesoft
339
+ rubygems_version: 1.2.0
340
+ signing_key:
341
+ 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.
343
+ test_files: []
344
+