paper_trail_manager 0.1.6 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -0
- data/.travis.yml +6 -0
- data/CHANGES.md +37 -0
- data/Gemfile +1 -18
- data/Gemfile.lock +60 -98
- data/README.md +23 -0
- data/Rakefile +10 -25
- data/VERSION +1 -1
- data/paper_trail_manager.gemspec +322 -93
- data/rails_test/Rakefile +90 -0
- data/{spec/dummy → rails_test/common}/app/controllers/application_controller.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/controllers/entities_controller.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/controllers/platforms_controller.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/helpers/application_helper.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/helpers/entities_helper.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/helpers/platforms_helper.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/models/entity.rb +2 -0
- data/{spec/dummy → rails_test/common}/app/models/platform.rb +2 -0
- data/{spec/dummy → rails_test/common}/app/views/application/index.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/_form.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/edit.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/index.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/new.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/show.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/layouts/application.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/_form.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/edit.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/index.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/new.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/show.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/config/database.yml +0 -0
- data/{spec/dummy → rails_test/common}/db/migrate/20110228091428_create_entities.rb +0 -0
- data/{spec/dummy → rails_test/common}/db/migrate/20110228093241_create_platforms.rb +0 -0
- data/{spec/dummy → rails_test/common}/db/migrate/20110228094444_create_versions.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/controllers/entities_controller_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/controllers/platforms_controller_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/helpers/entities_helper_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/helpers/platforms_helper_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/integration/navigation_spec.rb +1 -1
- data/{spec/dummy → rails_test/common}/spec/integration/paper_trail_manager_spec.rb +28 -21
- data/{spec/dummy → rails_test/common}/spec/models/entity_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/models/platform_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/requests/entities_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/requests/platforms_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/routing/entities_routing_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/routing/platforms_routing_spec.rb +0 -0
- data/rails_test/common/spec/spec_helper.rb +32 -0
- data/{spec → rails_test/common/spec}/support/factories.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/entities/edit.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/entities/index.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/entities/new.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/entities/show.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/platforms/edit.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/platforms/index.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/platforms/new.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/platforms/show.html.erb_spec.rb +0 -0
- data/rails_test/generate_test_directory +59 -0
- data/rails_test/rails-3.0.17/.gitignore +4 -0
- data/rails_test/rails-3.0.17/README +256 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/Rakefile +1 -1
- data/rails_test/rails-3.0.17/app/controllers/application_controller.rb +6 -0
- data/rails_test/rails-3.0.17/app/controllers/entities_controller.rb +83 -0
- data/rails_test/rails-3.0.17/app/controllers/platforms_controller.rb +83 -0
- data/rails_test/rails-3.0.17/app/helpers/application_helper.rb +2 -0
- data/rails_test/rails-3.0.17/app/helpers/entities_helper.rb +2 -0
- data/rails_test/rails-3.0.17/app/helpers/platforms_helper.rb +2 -0
- data/rails_test/rails-3.0.17/app/models/entity.rb +8 -0
- data/rails_test/rails-3.0.17/app/models/platform.rb +8 -0
- data/rails_test/rails-3.0.17/app/views/application/index.html.erb +6 -0
- data/rails_test/rails-3.0.17/app/views/entities/_form.html.erb +17 -0
- data/rails_test/rails-3.0.17/app/views/entities/edit.html.erb +6 -0
- data/rails_test/rails-3.0.17/app/views/entities/index.html.erb +21 -0
- data/rails_test/rails-3.0.17/app/views/entities/new.html.erb +5 -0
- data/rails_test/rails-3.0.17/app/views/entities/show.html.erb +5 -0
- data/rails_test/rails-3.0.17/app/views/layouts/application.html.erb +14 -0
- data/rails_test/rails-3.0.17/app/views/platforms/_form.html.erb +17 -0
- data/rails_test/rails-3.0.17/app/views/platforms/edit.html.erb +6 -0
- data/rails_test/rails-3.0.17/app/views/platforms/index.html.erb +21 -0
- data/rails_test/rails-3.0.17/app/views/platforms/new.html.erb +5 -0
- data/rails_test/rails-3.0.17/app/views/platforms/show.html.erb +5 -0
- data/rails_test/rails-3.0.17/config.ru +4 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/application.rb +5 -8
- data/rails_test/rails-3.0.17/config/boot.rb +6 -0
- data/rails_test/rails-3.0.17/config/database.yml +22 -0
- data/rails_test/rails-3.0.17/config/environment.rb +5 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/development.rb +1 -1
- data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/production.rb +1 -1
- data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/test.rb +1 -1
- data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/backtrace_silencers.rb +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/inflections.rb +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/mime_types.rb +0 -0
- data/rails_test/rails-3.0.17/config/initializers/secret_token.rb +7 -0
- data/rails_test/rails-3.0.17/config/initializers/session_store.rb +8 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/locales/en.yml +0 -0
- data/rails_test/rails-3.0.17/config/routes.rb +8 -0
- data/rails_test/rails-3.0.17/db/migrate/20110228091428_create_entities.rb +14 -0
- data/rails_test/rails-3.0.17/db/migrate/20110228093241_create_platforms.rb +14 -0
- data/rails_test/rails-3.0.17/db/migrate/20110228094444_create_versions.rb +18 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/db/schema.rb +0 -0
- data/rails_test/rails-3.0.17/db/seeds.rb +7 -0
- data/rails_test/rails-3.0.17/doc/README_FOR_APP +2 -0
- data/{spec/dummy/public/favicon.ico → rails_test/rails-3.0.17/lib/tasks/.gitkeep} +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/404.html +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/422.html +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/500.html +0 -0
- data/rails_test/rails-3.0.17/public/favicon.ico +0 -0
- data/rails_test/rails-3.0.17/public/images/rails.png +0 -0
- data/rails_test/rails-3.0.17/public/index.html +239 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/application.js +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/controls.js +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/dragdrop.js +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/effects.js +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/prototype.js +0 -0
- data/rails_test/rails-3.0.17/public/javascripts/rails.js +202 -0
- data/rails_test/rails-3.0.17/public/robots.txt +5 -0
- data/rails_test/rails-3.0.17/public/stylesheets/.gitkeep +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/script/rails +0 -0
- data/rails_test/rails-3.0.17/spec/controllers/entities_controller_spec.rb +125 -0
- data/rails_test/rails-3.0.17/spec/controllers/platforms_controller_spec.rb +125 -0
- data/rails_test/rails-3.0.17/spec/helpers/entities_helper_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/helpers/platforms_helper_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/integration/navigation_spec.rb +7 -0
- data/rails_test/rails-3.0.17/spec/integration/paper_trail_manager_spec.rb +232 -0
- data/rails_test/rails-3.0.17/spec/models/entity_spec.rb +14 -0
- data/rails_test/rails-3.0.17/spec/models/platform_spec.rb +14 -0
- data/rails_test/rails-3.0.17/spec/requests/entities_spec.rb +11 -0
- data/rails_test/rails-3.0.17/spec/requests/platforms_spec.rb +11 -0
- data/rails_test/rails-3.0.17/spec/routing/entities_routing_spec.rb +35 -0
- data/rails_test/rails-3.0.17/spec/routing/platforms_routing_spec.rb +35 -0
- data/rails_test/rails-3.0.17/spec/spec_helper.rb +32 -0
- data/rails_test/rails-3.0.17/spec/support/factories.rb +14 -0
- data/rails_test/rails-3.0.17/spec/views/entities/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/views/entities/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.0.17/spec/views/entities/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/views/entities/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.0.17/spec/views/platforms/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/views/platforms/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.0.17/spec/views/platforms/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/views/platforms/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.0.17/test/performance/browsing_test.rb +9 -0
- data/rails_test/rails-3.0.17/test/test_helper.rb +13 -0
- data/rails_test/rails-3.0.17/vendor/plugins/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/.gitignore +15 -0
- data/rails_test/rails-3.1.8/README +261 -0
- data/rails_test/rails-3.1.8/Rakefile +7 -0
- data/rails_test/rails-3.1.8/app/assets/images/rails.png +0 -0
- data/rails_test/rails-3.1.8/app/assets/javascripts/application.js +9 -0
- data/rails_test/rails-3.1.8/app/assets/stylesheets/application.css +7 -0
- data/rails_test/rails-3.1.8/app/controllers/application_controller.rb +6 -0
- data/rails_test/rails-3.1.8/app/controllers/entities_controller.rb +83 -0
- data/rails_test/rails-3.1.8/app/controllers/platforms_controller.rb +83 -0
- data/rails_test/rails-3.1.8/app/helpers/application_helper.rb +2 -0
- data/rails_test/rails-3.1.8/app/helpers/entities_helper.rb +2 -0
- data/rails_test/rails-3.1.8/app/helpers/platforms_helper.rb +2 -0
- data/rails_test/rails-3.1.8/app/mailers/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/app/models/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/app/models/entity.rb +8 -0
- data/rails_test/rails-3.1.8/app/models/platform.rb +8 -0
- data/rails_test/rails-3.1.8/app/views/application/index.html.erb +6 -0
- data/rails_test/rails-3.1.8/app/views/entities/_form.html.erb +17 -0
- data/rails_test/rails-3.1.8/app/views/entities/edit.html.erb +6 -0
- data/rails_test/rails-3.1.8/app/views/entities/index.html.erb +21 -0
- data/rails_test/rails-3.1.8/app/views/entities/new.html.erb +5 -0
- data/rails_test/rails-3.1.8/app/views/entities/show.html.erb +5 -0
- data/rails_test/rails-3.1.8/app/views/layouts/application.html.erb +14 -0
- data/rails_test/rails-3.1.8/app/views/platforms/_form.html.erb +17 -0
- data/rails_test/rails-3.1.8/app/views/platforms/edit.html.erb +6 -0
- data/rails_test/rails-3.1.8/app/views/platforms/index.html.erb +21 -0
- data/rails_test/rails-3.1.8/app/views/platforms/new.html.erb +5 -0
- data/rails_test/rails-3.1.8/app/views/platforms/show.html.erb +5 -0
- data/{spec/dummy → rails_test/rails-3.1.8}/config.ru +1 -1
- data/rails_test/rails-3.1.8/config/application.rb +48 -0
- data/rails_test/rails-3.1.8/config/boot.rb +6 -0
- data/rails_test/rails-3.1.8/config/database.yml +22 -0
- data/{spec/dummy → rails_test/rails-3.1.8}/config/environment.rb +1 -1
- data/rails_test/rails-3.1.8/config/environments/development.rb +30 -0
- data/rails_test/rails-3.1.8/config/environments/production.rb +60 -0
- data/rails_test/rails-3.1.8/config/environments/test.rb +39 -0
- data/rails_test/rails-3.1.8/config/initializers/backtrace_silencers.rb +7 -0
- data/rails_test/rails-3.1.8/config/initializers/inflections.rb +10 -0
- data/rails_test/rails-3.1.8/config/initializers/mime_types.rb +5 -0
- data/{spec/dummy → rails_test/rails-3.1.8}/config/initializers/secret_token.rb +1 -1
- data/{spec/dummy → rails_test/rails-3.1.8}/config/initializers/session_store.rb +2 -2
- data/rails_test/rails-3.1.8/config/initializers/wrap_parameters.rb +14 -0
- data/rails_test/rails-3.1.8/config/locales/en.yml +5 -0
- data/rails_test/rails-3.1.8/config/routes.rb +8 -0
- data/rails_test/rails-3.1.8/db/migrate/20110228091428_create_entities.rb +14 -0
- data/rails_test/rails-3.1.8/db/migrate/20110228093241_create_platforms.rb +14 -0
- data/rails_test/rails-3.1.8/db/migrate/20110228094444_create_versions.rb +18 -0
- data/rails_test/rails-3.1.8/db/schema.rb +40 -0
- data/rails_test/rails-3.1.8/db/seeds.rb +7 -0
- data/rails_test/rails-3.1.8/doc/README_FOR_APP +2 -0
- data/rails_test/rails-3.1.8/lib/assets/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/lib/tasks/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/log/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/public/404.html +26 -0
- data/rails_test/rails-3.1.8/public/422.html +26 -0
- data/rails_test/rails-3.1.8/public/500.html +26 -0
- data/rails_test/rails-3.1.8/public/favicon.ico +0 -0
- data/rails_test/rails-3.1.8/public/index.html +241 -0
- data/rails_test/rails-3.1.8/public/robots.txt +5 -0
- data/rails_test/rails-3.1.8/script/rails +6 -0
- data/rails_test/rails-3.1.8/spec/controllers/entities_controller_spec.rb +125 -0
- data/rails_test/rails-3.1.8/spec/controllers/platforms_controller_spec.rb +125 -0
- data/rails_test/rails-3.1.8/spec/helpers/entities_helper_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/helpers/platforms_helper_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/integration/navigation_spec.rb +7 -0
- data/rails_test/rails-3.1.8/spec/integration/paper_trail_manager_spec.rb +232 -0
- data/rails_test/rails-3.1.8/spec/models/entity_spec.rb +14 -0
- data/rails_test/rails-3.1.8/spec/models/platform_spec.rb +14 -0
- data/rails_test/rails-3.1.8/spec/requests/entities_spec.rb +11 -0
- data/rails_test/rails-3.1.8/spec/requests/platforms_spec.rb +11 -0
- data/rails_test/rails-3.1.8/spec/routing/entities_routing_spec.rb +35 -0
- data/rails_test/rails-3.1.8/spec/routing/platforms_routing_spec.rb +35 -0
- data/rails_test/rails-3.1.8/spec/spec_helper.rb +32 -0
- data/rails_test/rails-3.1.8/spec/support/factories.rb +14 -0
- data/rails_test/rails-3.1.8/spec/views/entities/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/views/entities/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.1.8/spec/views/entities/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/views/entities/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.1.8/spec/views/platforms/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/views/platforms/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.1.8/spec/views/platforms/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/views/platforms/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.1.8/test/fixtures/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/test/functional/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/test/integration/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/test/performance/browsing_test.rb +12 -0
- data/rails_test/rails-3.1.8/test/test_helper.rb +13 -0
- data/rails_test/rails-3.1.8/test/unit/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/vendor/assets/stylesheets/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/vendor/plugins/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/.gitignore +15 -0
- data/rails_test/rails-3.2.8/README.rdoc +261 -0
- data/rails_test/rails-3.2.8/Rakefile +7 -0
- data/rails_test/rails-3.2.8/app/assets/images/rails.png +0 -0
- data/rails_test/rails-3.2.8/app/assets/javascripts/application.js +15 -0
- data/rails_test/rails-3.2.8/app/assets/stylesheets/application.css +13 -0
- data/rails_test/rails-3.2.8/app/controllers/application_controller.rb +6 -0
- data/rails_test/rails-3.2.8/app/controllers/entities_controller.rb +83 -0
- data/rails_test/rails-3.2.8/app/controllers/platforms_controller.rb +83 -0
- data/rails_test/rails-3.2.8/app/helpers/application_helper.rb +2 -0
- data/rails_test/rails-3.2.8/app/helpers/entities_helper.rb +2 -0
- data/rails_test/rails-3.2.8/app/helpers/platforms_helper.rb +2 -0
- data/rails_test/rails-3.2.8/app/mailers/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/app/models/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/app/models/entity.rb +8 -0
- data/rails_test/rails-3.2.8/app/models/platform.rb +8 -0
- data/rails_test/rails-3.2.8/app/views/application/index.html.erb +6 -0
- data/rails_test/rails-3.2.8/app/views/entities/_form.html.erb +17 -0
- data/rails_test/rails-3.2.8/app/views/entities/edit.html.erb +6 -0
- data/rails_test/rails-3.2.8/app/views/entities/index.html.erb +21 -0
- data/rails_test/rails-3.2.8/app/views/entities/new.html.erb +5 -0
- data/rails_test/rails-3.2.8/app/views/entities/show.html.erb +5 -0
- data/rails_test/rails-3.2.8/app/views/layouts/application.html.erb +14 -0
- data/rails_test/rails-3.2.8/app/views/platforms/_form.html.erb +17 -0
- data/rails_test/rails-3.2.8/app/views/platforms/edit.html.erb +6 -0
- data/rails_test/rails-3.2.8/app/views/platforms/index.html.erb +21 -0
- data/rails_test/rails-3.2.8/app/views/platforms/new.html.erb +5 -0
- data/rails_test/rails-3.2.8/app/views/platforms/show.html.erb +5 -0
- data/rails_test/rails-3.2.8/config.ru +4 -0
- data/rails_test/rails-3.2.8/config/application.rb +62 -0
- data/rails_test/rails-3.2.8/config/boot.rb +6 -0
- data/rails_test/rails-3.2.8/config/database.yml +22 -0
- data/rails_test/rails-3.2.8/config/environment.rb +5 -0
- data/rails_test/rails-3.2.8/config/environments/development.rb +37 -0
- data/rails_test/rails-3.2.8/config/environments/production.rb +67 -0
- data/rails_test/rails-3.2.8/config/environments/test.rb +37 -0
- data/rails_test/rails-3.2.8/config/initializers/backtrace_silencers.rb +7 -0
- data/rails_test/rails-3.2.8/config/initializers/inflections.rb +15 -0
- data/rails_test/rails-3.2.8/config/initializers/mime_types.rb +5 -0
- data/rails_test/rails-3.2.8/config/initializers/secret_token.rb +7 -0
- data/rails_test/rails-3.2.8/config/initializers/session_store.rb +8 -0
- data/rails_test/rails-3.2.8/config/initializers/wrap_parameters.rb +14 -0
- data/rails_test/rails-3.2.8/config/locales/en.yml +5 -0
- data/rails_test/rails-3.2.8/config/routes.rb +8 -0
- data/rails_test/rails-3.2.8/db/migrate/20110228091428_create_entities.rb +14 -0
- data/rails_test/rails-3.2.8/db/migrate/20110228093241_create_platforms.rb +14 -0
- data/rails_test/rails-3.2.8/db/migrate/20110228094444_create_versions.rb +18 -0
- data/rails_test/rails-3.2.8/db/schema.rb +40 -0
- data/rails_test/rails-3.2.8/db/seeds.rb +7 -0
- data/rails_test/rails-3.2.8/doc/README_FOR_APP +2 -0
- data/rails_test/rails-3.2.8/lib/assets/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/lib/tasks/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/log/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/public/404.html +26 -0
- data/rails_test/rails-3.2.8/public/422.html +26 -0
- data/rails_test/rails-3.2.8/public/500.html +25 -0
- data/rails_test/rails-3.2.8/public/favicon.ico +0 -0
- data/rails_test/rails-3.2.8/public/index.html +241 -0
- data/rails_test/rails-3.2.8/public/robots.txt +5 -0
- data/rails_test/rails-3.2.8/script/rails +6 -0
- data/rails_test/rails-3.2.8/spec/controllers/entities_controller_spec.rb +125 -0
- data/rails_test/rails-3.2.8/spec/controllers/platforms_controller_spec.rb +125 -0
- data/rails_test/rails-3.2.8/spec/helpers/entities_helper_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/helpers/platforms_helper_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/integration/navigation_spec.rb +7 -0
- data/rails_test/rails-3.2.8/spec/integration/paper_trail_manager_spec.rb +232 -0
- data/rails_test/rails-3.2.8/spec/models/entity_spec.rb +14 -0
- data/rails_test/rails-3.2.8/spec/models/platform_spec.rb +14 -0
- data/rails_test/rails-3.2.8/spec/requests/entities_spec.rb +11 -0
- data/rails_test/rails-3.2.8/spec/requests/platforms_spec.rb +11 -0
- data/rails_test/rails-3.2.8/spec/routing/entities_routing_spec.rb +35 -0
- data/rails_test/rails-3.2.8/spec/routing/platforms_routing_spec.rb +35 -0
- data/rails_test/rails-3.2.8/spec/spec_helper.rb +32 -0
- data/rails_test/rails-3.2.8/spec/support/factories.rb +14 -0
- data/rails_test/rails-3.2.8/spec/views/entities/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/views/entities/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.2.8/spec/views/entities/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/views/entities/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.2.8/spec/views/platforms/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/views/platforms/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.2.8/spec/views/platforms/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/views/platforms/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.2.8/test/fixtures/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/test/functional/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/test/integration/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/test/performance/browsing_test.rb +12 -0
- data/rails_test/rails-3.2.8/test/test_helper.rb +13 -0
- data/rails_test/rails-3.2.8/test/unit/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/vendor/assets/javascripts/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/vendor/assets/stylesheets/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/vendor/plugins/.gitkeep +0 -0
- metadata +322 -138
- data/spec/controllers/paper_trail_manager/changes_controller_spec.rb +0 -8
- data/spec/dummy/config/boot.rb +0 -10
- data/spec/dummy/config/routes.rb +0 -64
- data/spec/dummy/public/javascripts/rails.js +0 -175
- data/spec/dummy/public/stylesheets/changes.css +0 -47
- data/spec/paper_trail_manager_spec.rb +0 -7
- data/spec/spec_helper.rb +0 -77
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
# Specs in this file have access to a helper object that includes
|
4
|
+
# the EntitiesHelper. For example:
|
5
|
+
#
|
6
|
+
# describe EntitiesHelper do
|
7
|
+
# describe "string concat" do
|
8
|
+
# it "concats two strings with spaces" do
|
9
|
+
# helper.concat_strings("this","that").should == "this that"
|
10
|
+
# end
|
11
|
+
# end
|
12
|
+
# end
|
13
|
+
describe EntitiesHelper do
|
14
|
+
#IK# pending "add some examples to (or delete) #{__FILE__}"
|
15
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
# Specs in this file have access to a helper object that includes
|
4
|
+
# the PlatformsHelper. For example:
|
5
|
+
#
|
6
|
+
# describe PlatformsHelper do
|
7
|
+
# describe "string concat" do
|
8
|
+
# it "concats two strings with spaces" do
|
9
|
+
# helper.concat_strings("this","that").should == "this that"
|
10
|
+
# end
|
11
|
+
# end
|
12
|
+
# end
|
13
|
+
describe PlatformsHelper do
|
14
|
+
#IK# pending "add some examples to (or delete) #{__FILE__}"
|
15
|
+
end
|
@@ -0,0 +1,232 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe PaperTrailManager do
|
4
|
+
def version
|
5
|
+
return assigns[:version]
|
6
|
+
end
|
7
|
+
|
8
|
+
def versions
|
9
|
+
return assigns[:versions]
|
10
|
+
end
|
11
|
+
|
12
|
+
def item_types
|
13
|
+
return versions.map(&:item_type).uniq.sort
|
14
|
+
end
|
15
|
+
|
16
|
+
def populate
|
17
|
+
@reimu = FactoryGirl.create(:entity, :name => "Miko Hakurei Reimu", :status => "Highly Responsive to Prayers")
|
18
|
+
@reimu.update_attributes(:name => "Hakurei Reimu", :status => "Phantasmagoria of Dimensional Dream")
|
19
|
+
@reimu.update_attributes(:status => "Perfect Cherry Blossom")
|
20
|
+
|
21
|
+
@sakuya = FactoryGirl.create(:entity, :name => "Sakuya Izayoi", :status => "Flowering Night")
|
22
|
+
|
23
|
+
@flanchan = FactoryGirl.create(:entity, :name => "Flandre Scarlet", :status => "The Embodiment of Scarlet Devil")
|
24
|
+
@flanchan.destroy
|
25
|
+
|
26
|
+
@kyuu_hachi = FactoryGirl.create(:platform, :name => "PC-9801", :status => "SUGOI!!1!")
|
27
|
+
@kyuu_hachi.update_attributes(:status => "Kimochi warui.")
|
28
|
+
@kyuu_hachi.destroy
|
29
|
+
|
30
|
+
@uinodouzu = FactoryGirl.create(:platform, :name => "Mikorusofto Uinodouzu", :status => 'o-O')
|
31
|
+
end
|
32
|
+
|
33
|
+
context "without changes" do
|
34
|
+
context "index" do
|
35
|
+
it "should have no changes by default" do
|
36
|
+
get "/changes"
|
37
|
+
|
38
|
+
assigns[:versions].should be_empty
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
context "with changes" do
|
44
|
+
before(:all) do
|
45
|
+
populate
|
46
|
+
end
|
47
|
+
|
48
|
+
after(:all) do
|
49
|
+
Entity.destroy_all
|
50
|
+
Platform.destroy_all
|
51
|
+
Version.destroy_all
|
52
|
+
end
|
53
|
+
|
54
|
+
context "index" do
|
55
|
+
context "when getting all changes" do
|
56
|
+
context "and authorized" do
|
57
|
+
context "and getting default index" do
|
58
|
+
before(:all) { get changes_path }
|
59
|
+
|
60
|
+
it "should have all changes" do
|
61
|
+
versions.size.should == 10
|
62
|
+
end
|
63
|
+
|
64
|
+
it "should have changes for all changed item types" do
|
65
|
+
item_types.should == ["Entity", "Platform"]
|
66
|
+
end
|
67
|
+
|
68
|
+
it "should order changes with newest and highest id at the top" do
|
69
|
+
versions.map(&:id).should == versions.sort_by { |o| [o.created_at, o.id] }.reverse.map(&:id)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
context "and getting paginated page" do
|
74
|
+
let(:page) { 2 }
|
75
|
+
let(:per_page) { 3 }
|
76
|
+
|
77
|
+
before(:all) { get changes_path(:page => page, :per_page => per_page) }
|
78
|
+
|
79
|
+
it "should set :page parameter" do
|
80
|
+
assigns[:page].should == page
|
81
|
+
end
|
82
|
+
|
83
|
+
it "should set :per_page parameter" do
|
84
|
+
assigns[:per_page].should == per_page
|
85
|
+
end
|
86
|
+
|
87
|
+
it "should retrieve only items for page" do
|
88
|
+
versions.size.should == per_page
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
context "and getting invalid pagination" do
|
93
|
+
before(:all) { get changes_path(:page => "Shanghai", :per_page => "Alice") }
|
94
|
+
|
95
|
+
it "should set default :page parameter" do
|
96
|
+
assigns[:page].should be_nil
|
97
|
+
end
|
98
|
+
|
99
|
+
it "should set default :per_page parameter" do
|
100
|
+
assigns[:per_page].should == PaperTrailManager::ChangesController::PER_PAGE
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
# TODO
|
106
|
+
# context "when not authorized" do
|
107
|
+
# it "should display an error if user is not allowed to list changes"
|
108
|
+
# end
|
109
|
+
end
|
110
|
+
|
111
|
+
context "when getting changes for a specific type" do
|
112
|
+
context "that exists" do
|
113
|
+
before(:all) { get changes_path(:type => "Entity") }
|
114
|
+
|
115
|
+
it "should show a subset of the changes" do
|
116
|
+
versions.size.should == 6
|
117
|
+
end
|
118
|
+
|
119
|
+
it "should have changes only for that type" do
|
120
|
+
item_types.should == ["Entity"]
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
# TODO
|
125
|
+
# context "that doesn't exist" do
|
126
|
+
# it "should display ana error that the type doesn't exist"
|
127
|
+
# end
|
128
|
+
end
|
129
|
+
|
130
|
+
context "when getting changes for a specific record" do
|
131
|
+
context "that exists" do
|
132
|
+
before(:all) { get changes_path(:type => "Entity", :id => @reimu.id) }
|
133
|
+
|
134
|
+
it "should show a subset of the changes" do
|
135
|
+
versions.size.should == 3
|
136
|
+
end
|
137
|
+
|
138
|
+
it "should have changes only for that type" do
|
139
|
+
item_types.should == ["Entity"]
|
140
|
+
end
|
141
|
+
|
142
|
+
it "should have changes only for that record" do
|
143
|
+
versions.map(&:item_id).uniq.should == [@reimu.id]
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
# TODO
|
148
|
+
# context "that doesn't exist" do
|
149
|
+
# it "should display an error that the record doesn't exist"
|
150
|
+
# end
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
context "show a change" do
|
155
|
+
context "that exists" do
|
156
|
+
context "when authorized" do
|
157
|
+
before(:all) do
|
158
|
+
@version = @reimu.versions.last
|
159
|
+
get change_path(@version)
|
160
|
+
end
|
161
|
+
|
162
|
+
it "should show the requested change" do
|
163
|
+
version.should == @version
|
164
|
+
end
|
165
|
+
|
166
|
+
it "should show a change with the right event" do
|
167
|
+
version.event.should == "update"
|
168
|
+
end
|
169
|
+
|
170
|
+
it "should be associated with the expected record" do
|
171
|
+
version.item.should == @reimu
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
# TODO
|
176
|
+
# context "when not authorized" do
|
177
|
+
# it "should display an error if user is not allowed to show the change"
|
178
|
+
# end
|
179
|
+
end
|
180
|
+
|
181
|
+
# TODO
|
182
|
+
# context "that doesn't exist" do
|
183
|
+
# it "should display an error that the change doesn't exist"
|
184
|
+
# end
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
context "when rolling back changes" do
|
189
|
+
context "that that exist" do
|
190
|
+
before(:each) { populate }
|
191
|
+
|
192
|
+
context "when authorized" do
|
193
|
+
it "should rollback a newly-created record by deleting it" do
|
194
|
+
Entity.exists?(@reimu.id).should be_true
|
195
|
+
|
196
|
+
put change_path(@reimu.versions.first)
|
197
|
+
|
198
|
+
Entity.exists?(@reimu.id).should be_false
|
199
|
+
end
|
200
|
+
|
201
|
+
it "should rollback an edit by reverting to the previous state" do
|
202
|
+
@reimu.reload
|
203
|
+
@reimu.status.should == "Perfect Cherry Blossom"
|
204
|
+
|
205
|
+
put change_path(@reimu.versions.last)
|
206
|
+
|
207
|
+
@reimu.reload
|
208
|
+
@reimu.status.should == "Phantasmagoria of Dimensional Dream"
|
209
|
+
end
|
210
|
+
|
211
|
+
it "should rollback a delete by restoring the record" do
|
212
|
+
Entity.exists?(@flanchan.id).should be_false
|
213
|
+
|
214
|
+
put change_path(Version.where(:item_id => @flanchan.id, :item_type => "Entity").last)
|
215
|
+
|
216
|
+
flanchan = Entity.find(@flanchan.id)
|
217
|
+
flanchan.status.should == "The Embodiment of Scarlet Devil"
|
218
|
+
end
|
219
|
+
end
|
220
|
+
|
221
|
+
# TODO
|
222
|
+
# context "when not authorized" do
|
223
|
+
# it "should display an error if user is not allowed to revert that change"
|
224
|
+
# end
|
225
|
+
end
|
226
|
+
|
227
|
+
# TODO
|
228
|
+
# context "that don't exist" do
|
229
|
+
# it "should display an error that the change doesn't exist"
|
230
|
+
# end
|
231
|
+
end
|
232
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Entity do
|
4
|
+
context "when creating a sample record" do
|
5
|
+
subject { FactoryGirl.create(:entity) }
|
6
|
+
|
7
|
+
its(:id) { should be_present }
|
8
|
+
its(:name) { should be_present }
|
9
|
+
its(:status) { should be_present }
|
10
|
+
|
11
|
+
it { should be_valid }
|
12
|
+
it { should_not be_a_new_record }
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Platform do
|
4
|
+
context "when creating a sample record" do
|
5
|
+
subject { FactoryGirl.create(:platform) }
|
6
|
+
|
7
|
+
its(:id) { should be_present }
|
8
|
+
its(:name) { should be_present }
|
9
|
+
its(:status) { should be_present }
|
10
|
+
|
11
|
+
it { should be_valid }
|
12
|
+
it { should_not be_a_new_record }
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "Entities" do
|
4
|
+
describe "GET /entities" do
|
5
|
+
it "works! (now write some real specs)" do
|
6
|
+
# Run the generator again with the --webrat flag if you want to use webrat methods/matchers
|
7
|
+
get entities_path
|
8
|
+
response.status.should be(200)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "Platforms" do
|
4
|
+
describe "GET /platforms" do
|
5
|
+
it "works! (now write some real specs)" do
|
6
|
+
# Run the generator again with the --webrat flag if you want to use webrat methods/matchers
|
7
|
+
get platforms_path
|
8
|
+
response.status.should be(200)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe EntitiesController do
|
4
|
+
describe "routing" do
|
5
|
+
|
6
|
+
it "recognizes and generates #index" do
|
7
|
+
{ :get => "/entities" }.should route_to(:controller => "entities", :action => "index")
|
8
|
+
end
|
9
|
+
|
10
|
+
it "recognizes and generates #new" do
|
11
|
+
{ :get => "/entities/new" }.should route_to(:controller => "entities", :action => "new")
|
12
|
+
end
|
13
|
+
|
14
|
+
it "recognizes and generates #show" do
|
15
|
+
{ :get => "/entities/1" }.should route_to(:controller => "entities", :action => "show", :id => "1")
|
16
|
+
end
|
17
|
+
|
18
|
+
it "recognizes and generates #edit" do
|
19
|
+
{ :get => "/entities/1/edit" }.should route_to(:controller => "entities", :action => "edit", :id => "1")
|
20
|
+
end
|
21
|
+
|
22
|
+
it "recognizes and generates #create" do
|
23
|
+
{ :post => "/entities" }.should route_to(:controller => "entities", :action => "create")
|
24
|
+
end
|
25
|
+
|
26
|
+
it "recognizes and generates #update" do
|
27
|
+
{ :put => "/entities/1" }.should route_to(:controller => "entities", :action => "update", :id => "1")
|
28
|
+
end
|
29
|
+
|
30
|
+
it "recognizes and generates #destroy" do
|
31
|
+
{ :delete => "/entities/1" }.should route_to(:controller => "entities", :action => "destroy", :id => "1")
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe PlatformsController do
|
4
|
+
describe "routing" do
|
5
|
+
|
6
|
+
it "recognizes and generates #index" do
|
7
|
+
{ :get => "/platforms" }.should route_to(:controller => "platforms", :action => "index")
|
8
|
+
end
|
9
|
+
|
10
|
+
it "recognizes and generates #new" do
|
11
|
+
{ :get => "/platforms/new" }.should route_to(:controller => "platforms", :action => "new")
|
12
|
+
end
|
13
|
+
|
14
|
+
it "recognizes and generates #show" do
|
15
|
+
{ :get => "/platforms/1" }.should route_to(:controller => "platforms", :action => "show", :id => "1")
|
16
|
+
end
|
17
|
+
|
18
|
+
it "recognizes and generates #edit" do
|
19
|
+
{ :get => "/platforms/1/edit" }.should route_to(:controller => "platforms", :action => "edit", :id => "1")
|
20
|
+
end
|
21
|
+
|
22
|
+
it "recognizes and generates #create" do
|
23
|
+
{ :post => "/platforms" }.should route_to(:controller => "platforms", :action => "create")
|
24
|
+
end
|
25
|
+
|
26
|
+
it "recognizes and generates #update" do
|
27
|
+
{ :put => "/platforms/1" }.should route_to(:controller => "platforms", :action => "update", :id => "1")
|
28
|
+
end
|
29
|
+
|
30
|
+
it "recognizes and generates #destroy" do
|
31
|
+
{ :delete => "/platforms/1" }.should route_to(:controller => "platforms", :action => "destroy", :id => "1")
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
# Configure Rails Envinronment
|
4
|
+
ENV["RAILS_ENV"] = "test"
|
5
|
+
|
6
|
+
require File.expand_path("../../config/environment.rb", __FILE__)
|
7
|
+
require "rails/test_help"
|
8
|
+
require "rspec/rails"
|
9
|
+
|
10
|
+
ActionMailer::Base.delivery_method = :test
|
11
|
+
ActionMailer::Base.perform_deliveries = true
|
12
|
+
ActionMailer::Base.default_url_options[:host] = "test.com"
|
13
|
+
|
14
|
+
Rails.backtrace_cleaner.remove_silencers!
|
15
|
+
|
16
|
+
# Run any available migration
|
17
|
+
ActiveRecord::Migrator.migrate File.expand_path("../../db/migrate/", __FILE__)
|
18
|
+
|
19
|
+
# Load support files
|
20
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
21
|
+
|
22
|
+
RSpec.configure do |config|
|
23
|
+
# Remove this line if you don't want RSpec's should and should_not
|
24
|
+
# methods or matchers
|
25
|
+
require 'rspec/expectations'
|
26
|
+
config.include RSpec::Matchers
|
27
|
+
|
28
|
+
# == Mock Framework
|
29
|
+
config.mock_with :rspec
|
30
|
+
|
31
|
+
config.use_transactional_fixtures = true
|
32
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'factory_girl'
|
2
|
+
|
3
|
+
FactoryGirl.define do
|
4
|
+
factory :entity do
|
5
|
+
sequence(:name) { |n| "name_#{n}" }
|
6
|
+
sequence(:status) { |n| "status_#{n}" }
|
7
|
+
end
|
8
|
+
|
9
|
+
factory :platform do
|
10
|
+
sequence(:name) { |n| "name_#{n}" }
|
11
|
+
sequence(:status) { |n| "status_#{n}" }
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|