rd_resource_controller 1.0.0.rc → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -2
- metadata +86 -84
data/VERSION.yml
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rd_resource_controller
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 1
|
7
8
|
- 0
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 1.0.0.rc
|
10
|
+
version: 1.0.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- James Golick
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2010-
|
20
|
+
date: 2010-11-10 00:00:00 +03:00
|
21
21
|
default_executable:
|
22
22
|
dependencies: []
|
23
23
|
|
@@ -290,132 +290,134 @@ rdoc_options:
|
|
290
290
|
require_paths:
|
291
291
|
- lib
|
292
292
|
required_ruby_version: !ruby/object:Gem::Requirement
|
293
|
+
none: false
|
293
294
|
requirements:
|
294
295
|
- - ">="
|
295
296
|
- !ruby/object:Gem::Version
|
297
|
+
hash: 3
|
296
298
|
segments:
|
297
299
|
- 0
|
298
300
|
version: "0"
|
299
301
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
302
|
+
none: false
|
300
303
|
requirements:
|
301
|
-
- - "
|
304
|
+
- - ">="
|
302
305
|
- !ruby/object:Gem::Version
|
306
|
+
hash: 3
|
303
307
|
segments:
|
304
|
-
-
|
305
|
-
|
306
|
-
- 1
|
307
|
-
version: 1.3.1
|
308
|
+
- 0
|
309
|
+
version: "0"
|
308
310
|
requirements: []
|
309
311
|
|
310
312
|
rubyforge_project:
|
311
|
-
rubygems_version: 1.3.
|
313
|
+
rubygems_version: 1.3.7
|
312
314
|
signing_key:
|
313
315
|
specification_version: 3
|
314
316
|
summary: Rails RESTful controller abstraction plugin.
|
315
317
|
test_files:
|
316
|
-
- test/app/
|
317
|
-
- test/app/
|
318
|
-
- test/app/
|
319
|
-
- test/app/
|
318
|
+
- test/app/controllers/accounts_controller.rb
|
319
|
+
- test/app/controllers/application_controller.rb
|
320
|
+
- test/app/controllers/cms/options_controller.rb
|
321
|
+
- test/app/controllers/cms/personnel_controller.rb
|
322
|
+
- test/app/controllers/cms/photos_controller.rb
|
323
|
+
- test/app/controllers/cms/products_controller.rb
|
324
|
+
- test/app/controllers/comments_controller.rb
|
325
|
+
- test/app/controllers/images_controller.rb
|
326
|
+
- test/app/controllers/options_controller.rb
|
327
|
+
- test/app/controllers/people_controller.rb
|
328
|
+
- test/app/controllers/photos_controller.rb
|
329
|
+
- test/app/controllers/posts_controller.rb
|
330
|
+
- test/app/controllers/projects_controller.rb
|
331
|
+
- test/app/controllers/somethings_controller.rb
|
332
|
+
- test/app/controllers/tags_controller.rb
|
333
|
+
- test/app/controllers/users_controller.rb
|
334
|
+
- test/app/helpers/accounts_helper.rb
|
335
|
+
- test/app/helpers/application_helper.rb
|
336
|
+
- test/app/helpers/cms/products_helper.rb
|
320
337
|
- test/app/helpers/comments_helper.rb
|
338
|
+
- test/app/helpers/images_helper.rb
|
339
|
+
- test/app/helpers/options_helper.rb
|
321
340
|
- test/app/helpers/people_helper.rb
|
322
341
|
- test/app/helpers/photos_helper.rb
|
342
|
+
- test/app/helpers/posts_helper.rb
|
343
|
+
- test/app/helpers/projects_helper.rb
|
323
344
|
- test/app/helpers/somethings_helper.rb
|
324
|
-
- test/app/helpers/application_helper.rb
|
325
|
-
- test/app/helpers/options_helper.rb
|
326
|
-
- test/app/helpers/accounts_helper.rb
|
327
|
-
- test/app/helpers/cms/products_helper.rb
|
328
345
|
- test/app/helpers/tags_helper.rb
|
346
|
+
- test/app/helpers/users_helper.rb
|
347
|
+
- test/app/models/account.rb
|
329
348
|
- test/app/models/comment.rb
|
330
349
|
- test/app/models/image.rb
|
331
|
-
- test/app/models/photo.rb
|
332
350
|
- test/app/models/option.rb
|
333
|
-
- test/app/models/post.rb
|
334
351
|
- test/app/models/personnel.rb
|
335
|
-
- test/app/models/
|
352
|
+
- test/app/models/photo.rb
|
353
|
+
- test/app/models/post.rb
|
336
354
|
- test/app/models/product.rb
|
337
|
-
- test/app/models/tag.rb
|
338
|
-
- test/app/models/something.rb
|
339
355
|
- test/app/models/project.rb
|
356
|
+
- test/app/models/something.rb
|
357
|
+
- test/app/models/tag.rb
|
340
358
|
- test/app/models/user.rb
|
341
|
-
- test/app/controllers/projects_controller.rb
|
342
|
-
- test/app/controllers/users_controller.rb
|
343
|
-
- test/app/controllers/application_controller.rb
|
344
|
-
- test/app/controllers/posts_controller.rb
|
345
|
-
- test/app/controllers/photos_controller.rb
|
346
|
-
- test/app/controllers/somethings_controller.rb
|
347
|
-
- test/app/controllers/tags_controller.rb
|
348
|
-
- test/app/controllers/comments_controller.rb
|
349
|
-
- test/app/controllers/people_controller.rb
|
350
|
-
- test/app/controllers/accounts_controller.rb
|
351
|
-
- test/app/controllers/images_controller.rb
|
352
|
-
- test/app/controllers/cms/personnel_controller.rb
|
353
|
-
- test/app/controllers/cms/photos_controller.rb
|
354
|
-
- test/app/controllers/cms/products_controller.rb
|
355
|
-
- test/app/controllers/cms/options_controller.rb
|
356
|
-
- test/app/controllers/options_controller.rb
|
357
|
-
- test/db/schema.rb
|
358
|
-
- test/db/migrate/009_add_account_id_to_photos.rb
|
359
|
-
- test/db/migrate/006_create_tags.rb
|
360
|
-
- test/db/migrate/013_create_personnel.rb
|
361
|
-
- test/db/migrate/010_create_projects.rb
|
362
|
-
- test/db/migrate/014_add_personnel_id_to_photos.rb
|
363
|
-
- test/db/migrate/004_create_options.rb
|
364
|
-
- test/db/migrate/002_create_products.rb
|
365
|
-
- test/db/migrate/011_create_images.rb
|
366
|
-
- test/db/migrate/012_create_users.rb
|
367
|
-
- test/db/migrate/005_create_photos.rb
|
368
|
-
- test/db/migrate/008_create_accounts.rb
|
369
|
-
- test/db/migrate/007_create_somethings.rb
|
370
|
-
- test/db/migrate/003_create_comments.rb
|
371
|
-
- test/db/migrate/001_create_posts.rb
|
372
359
|
- test/config/application.rb
|
373
360
|
- test/config/boot.rb
|
374
|
-
- test/config/
|
375
|
-
- test/config/initializers/secret_token.rb
|
376
|
-
- test/config/initializers/inflections.rb
|
377
|
-
- test/config/environments/test.rb
|
361
|
+
- test/config/environment.rb
|
378
362
|
- test/config/environments/development.rb
|
363
|
+
- test/config/environments/test.rb
|
364
|
+
- test/config/initializers/inflections.rb
|
365
|
+
- test/config/initializers/secret_token.rb
|
366
|
+
- test/config/initializers/session_store.rb
|
379
367
|
- test/config/routes.rb
|
380
|
-
- test/
|
381
|
-
- test/
|
382
|
-
- test/
|
383
|
-
- test/
|
368
|
+
- test/db/migrate/001_create_posts.rb
|
369
|
+
- test/db/migrate/002_create_products.rb
|
370
|
+
- test/db/migrate/003_create_comments.rb
|
371
|
+
- test/db/migrate/004_create_options.rb
|
372
|
+
- test/db/migrate/005_create_photos.rb
|
373
|
+
- test/db/migrate/006_create_tags.rb
|
374
|
+
- test/db/migrate/007_create_somethings.rb
|
375
|
+
- test/db/migrate/008_create_accounts.rb
|
376
|
+
- test/db/migrate/009_add_account_id_to_photos.rb
|
377
|
+
- test/db/migrate/010_create_projects.rb
|
378
|
+
- test/db/migrate/011_create_images.rb
|
379
|
+
- test/db/migrate/012_create_users.rb
|
380
|
+
- test/db/migrate/013_create_personnel.rb
|
381
|
+
- test/db/migrate/014_add_personnel_id_to_photos.rb
|
382
|
+
- test/db/schema.rb
|
383
|
+
- test/test/functional/cms/options_controller_test.rb
|
384
|
+
- test/test/functional/cms/photos_controller_test.rb
|
385
|
+
- test/test/functional/cms/products_controller_test.rb
|
384
386
|
- test/test/functional/comments_controller_test.rb
|
387
|
+
- test/test/functional/images_controller_test.rb
|
385
388
|
- test/test/functional/people_controller_test.rb
|
386
|
-
- test/test/functional/projects_controller_test.rb
|
387
389
|
- test/test/functional/photos_controller_test.rb
|
388
|
-
- test/test/functional/
|
390
|
+
- test/test/functional/posts_controller_test.rb
|
391
|
+
- test/test/functional/projects_controller_test.rb
|
389
392
|
- test/test/functional/somethings_controller_test.rb
|
390
|
-
- test/test/functional/
|
391
|
-
- test/test/functional/
|
392
|
-
- test/test/functional/cms/photos_controller_test.rb
|
393
|
+
- test/test/functional/tags_controller_test.rb
|
394
|
+
- test/test/functional/users_controller_test.rb
|
393
395
|
- test/test/test_helper.rb
|
394
|
-
- test/test/unit/
|
396
|
+
- test/test/unit/accessors_test.rb
|
397
|
+
- test/test/unit/account_test.rb
|
398
|
+
- test/test/unit/action_options_test.rb
|
395
399
|
- test/test/unit/base_test.rb
|
396
|
-
- test/test/unit/
|
400
|
+
- test/test/unit/comment_test.rb
|
401
|
+
- test/test/unit/failable_action_options_test.rb
|
397
402
|
- test/test/unit/helpers/current_objects_test.rb
|
398
|
-
- test/test/unit/helpers/singleton_urls_test.rb
|
399
|
-
- test/test/unit/helpers/urls_test.rb
|
400
403
|
- test/test/unit/helpers/internal_test.rb
|
401
404
|
- test/test/unit/helpers/nested_test.rb
|
402
405
|
- test/test/unit/helpers/singleton_current_objects_test.rb
|
403
|
-
- test/test/unit/
|
404
|
-
- test/test/unit/
|
405
|
-
- test/test/unit/
|
406
|
-
- test/test/unit/
|
406
|
+
- test/test/unit/helpers/singleton_nested_test.rb
|
407
|
+
- test/test/unit/helpers/singleton_urls_test.rb
|
408
|
+
- test/test/unit/helpers/urls_test.rb
|
409
|
+
- test/test/unit/helpers_test.rb
|
410
|
+
- test/test/unit/image_test.rb
|
407
411
|
- test/test/unit/option_test.rb
|
412
|
+
- test/test/unit/photo_test.rb
|
413
|
+
- test/test/unit/post_test.rb
|
408
414
|
- test/test/unit/project_test.rb
|
409
|
-
- test/test/unit/account_test.rb
|
410
|
-
- test/test/unit/action_options_test.rb
|
411
|
-
- test/test/unit/comment_test.rb
|
412
|
-
- test/test/unit/failable_action_options_test.rb
|
413
415
|
- test/test/unit/response_collector_test.rb
|
414
|
-
- test/test/unit/
|
415
|
-
- test/test/unit/
|
416
|
-
- test/test/unit/
|
417
|
-
- test/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb
|
416
|
+
- test/test/unit/something_test.rb
|
417
|
+
- test/test/unit/tag_test.rb
|
418
|
+
- test/test/unit/urligence_test.rb
|
418
419
|
- test/vendor/plugins/dynamic_form/init.rb
|
420
|
+
- test/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb
|
419
421
|
- test/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb
|
420
|
-
- test/vendor/plugins/dynamic_form/test/test_helper.rb
|
421
422
|
- test/vendor/plugins/dynamic_form/test/dynamic_form_test.rb
|
423
|
+
- test/vendor/plugins/dynamic_form/test/test_helper.rb
|