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
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CHANGES.md
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
Changes to `paper_trail_manager`
|
2
|
+
================================
|
3
|
+
|
4
|
+
* 0.2.0
|
5
|
+
* Add support for Rails 3.1 and 3.2, while retaining support for Rails 3.0.
|
6
|
+
* Add test suite to check engine against multiple versions. This test suite is derived from Mike Dalessio's "loofah-activerecord" gem, available at https://github.com/flavorjones/loofah-activerecord
|
7
|
+
|
8
|
+
* 0.1.6
|
9
|
+
* Fix `Gemfile.lock` issue with 0.1.5.
|
10
|
+
|
11
|
+
* 0.1.5
|
12
|
+
* Fix exceptions typically caused by bots submitting invalid pagination parameters. Now all pagination parameters are sanitized.
|
13
|
+
* Restrict use to Rails 3.0.x because newer versions are not compatible. Will try to add support for newer Rails releases later.
|
14
|
+
* Update test/development dependencies.
|
15
|
+
* Add travis-ci support.
|
16
|
+
|
17
|
+
* 0.1.4
|
18
|
+
* Fix `changes_row` CSS, was `#{EVENT},` with a trailing comma. Kept it for backwards compatibility, and added `#{EVENT}` and `change_event_#{EVENT}` classes.
|
19
|
+
* Add sample CSS stylesheet: `spec/dummy/public/stylesheets/changes.css`.
|
20
|
+
|
21
|
+
|
22
|
+
* 0.1.3
|
23
|
+
* Fix deprecation warnings for Rails Engines paths. [Nate Bird]
|
24
|
+
* Add homepage to included demo application that provides links and usage instructions.
|
25
|
+
|
26
|
+
* 0.1.2
|
27
|
+
* Switch template format from `haml` to `erb` to eliminate extra dependencies and improve compatibility. [Reid Beels]
|
28
|
+
|
29
|
+
* 0.1.1
|
30
|
+
* Fix `rake spec` to work with `factory_girl` 2.0.x gem.
|
31
|
+
|
32
|
+
* 0.1.0
|
33
|
+
* Fix database database query to be more SQL compatible. [Linus Graybill]
|
34
|
+
* Fix Gemfile to reduce run-time dependencies and relax their version requirements.
|
35
|
+
|
36
|
+
* 0.0.0
|
37
|
+
* Initial release.
|
data/Gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
source 'http://rubygems.org'
|
2
2
|
|
3
3
|
gem 'rake'
|
4
|
-
gem 'rails', '~> 3.0
|
4
|
+
gem 'rails', '~> 3.0'
|
5
5
|
gem 'paper_trail', '~> 2.0'
|
6
6
|
gem 'will_paginate', '~> 3.0.pre2'
|
7
7
|
|
@@ -10,17 +10,6 @@ group :development do
|
|
10
10
|
gem 'jeweler', '~> 1.8.4'
|
11
11
|
gem 'sqlite3-ruby', :require => 'sqlite3'
|
12
12
|
|
13
|
-
# Guard and plugins
|
14
|
-
gem 'guard'
|
15
|
-
gem 'guard-rspec'
|
16
|
-
gem 'guard-spork'
|
17
|
-
|
18
|
-
# Guard notifier
|
19
|
-
case RUBY_PLATFORM
|
20
|
-
when /-*darwin.*/ then gem 'growl'
|
21
|
-
when /-*linux.*/ then gem 'libnotify'
|
22
|
-
end
|
23
|
-
|
24
13
|
# OPTIONAL LIBRARIES: These libraries upset travis-ci and may cause Ruby or
|
25
14
|
# RVM to hang, so only use them when needed.
|
26
15
|
if ENV['DEBUGGER']
|
@@ -36,9 +25,3 @@ group :development do
|
|
36
25
|
end
|
37
26
|
end
|
38
27
|
end
|
39
|
-
|
40
|
-
group :test do
|
41
|
-
gem 'factory_girl_rails', '~> 1.7.0'
|
42
|
-
gem 'rspec-rails', '~> 2.11.0'
|
43
|
-
gem 'spork', '~> 0.9.2'
|
44
|
-
end
|
data/Gemfile.lock
CHANGED
@@ -1,121 +1,90 @@
|
|
1
1
|
GEM
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
rack (~> 1.2
|
15
|
-
rack-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
arel (
|
32
|
-
builder (
|
33
|
-
|
34
|
-
erubis (2.6.6)
|
35
|
-
abstract (>= 1.0.0)
|
36
|
-
factory_girl (2.6.4)
|
37
|
-
activesupport (>= 2.3.9)
|
38
|
-
factory_girl_rails (1.7.0)
|
39
|
-
factory_girl (~> 2.6.0)
|
40
|
-
railties (>= 3.0.0)
|
41
|
-
ffi (1.0.11)
|
4
|
+
actionmailer (3.2.8)
|
5
|
+
actionpack (= 3.2.8)
|
6
|
+
mail (~> 2.4.4)
|
7
|
+
actionpack (3.2.8)
|
8
|
+
activemodel (= 3.2.8)
|
9
|
+
activesupport (= 3.2.8)
|
10
|
+
builder (~> 3.0.0)
|
11
|
+
erubis (~> 2.7.0)
|
12
|
+
journey (~> 1.0.4)
|
13
|
+
rack (~> 1.4.0)
|
14
|
+
rack-cache (~> 1.2)
|
15
|
+
rack-test (~> 0.6.1)
|
16
|
+
sprockets (~> 2.1.3)
|
17
|
+
activemodel (3.2.8)
|
18
|
+
activesupport (= 3.2.8)
|
19
|
+
builder (~> 3.0.0)
|
20
|
+
activerecord (3.2.8)
|
21
|
+
activemodel (= 3.2.8)
|
22
|
+
activesupport (= 3.2.8)
|
23
|
+
arel (~> 3.0.2)
|
24
|
+
tzinfo (~> 0.3.29)
|
25
|
+
activeresource (3.2.8)
|
26
|
+
activemodel (= 3.2.8)
|
27
|
+
activesupport (= 3.2.8)
|
28
|
+
activesupport (3.2.8)
|
29
|
+
i18n (~> 0.6)
|
30
|
+
multi_json (~> 1.0)
|
31
|
+
arel (3.0.2)
|
32
|
+
builder (3.0.0)
|
33
|
+
erubis (2.7.0)
|
42
34
|
git (1.2.5)
|
43
|
-
|
44
|
-
|
45
|
-
thor (>= 0.14.6)
|
46
|
-
guard-rspec (1.2.1)
|
47
|
-
guard (>= 1.1)
|
48
|
-
guard-spork (1.1.0)
|
49
|
-
guard (>= 1.1)
|
50
|
-
spork (>= 0.8.4)
|
51
|
-
i18n (0.5.0)
|
35
|
+
hike (1.2.1)
|
36
|
+
i18n (0.6.0)
|
52
37
|
jeweler (1.8.4)
|
53
38
|
bundler (~> 1.0)
|
54
39
|
git (>= 1.2.5)
|
55
40
|
rake
|
56
41
|
rdoc
|
42
|
+
journey (1.0.4)
|
57
43
|
json (1.7.4)
|
58
|
-
|
59
|
-
ffi (~> 1.0.11)
|
60
|
-
listen (0.4.7)
|
61
|
-
rb-fchange (~> 0.0.5)
|
62
|
-
rb-fsevent (~> 0.9.1)
|
63
|
-
rb-inotify (~> 0.8.8)
|
64
|
-
mail (2.2.19)
|
65
|
-
activesupport (>= 2.3.6)
|
44
|
+
mail (2.4.4)
|
66
45
|
i18n (>= 0.4.0)
|
67
46
|
mime-types (~> 1.16)
|
68
47
|
treetop (~> 1.4.8)
|
69
48
|
mime-types (1.19)
|
49
|
+
multi_json (1.3.6)
|
70
50
|
paper_trail (2.6.3)
|
71
51
|
activerecord (~> 3.0)
|
72
52
|
railties (~> 3.0)
|
73
53
|
polyglot (0.3.3)
|
74
|
-
rack (1.
|
75
|
-
rack-
|
76
|
-
rack (>=
|
77
|
-
rack-
|
54
|
+
rack (1.4.1)
|
55
|
+
rack-cache (1.2)
|
56
|
+
rack (>= 0.4)
|
57
|
+
rack-ssl (1.3.2)
|
58
|
+
rack
|
59
|
+
rack-test (0.6.1)
|
78
60
|
rack (>= 1.0)
|
79
|
-
rails (3.
|
80
|
-
actionmailer (= 3.
|
81
|
-
actionpack (= 3.
|
82
|
-
activerecord (= 3.
|
83
|
-
activeresource (= 3.
|
84
|
-
activesupport (= 3.
|
61
|
+
rails (3.2.8)
|
62
|
+
actionmailer (= 3.2.8)
|
63
|
+
actionpack (= 3.2.8)
|
64
|
+
activerecord (= 3.2.8)
|
65
|
+
activeresource (= 3.2.8)
|
66
|
+
activesupport (= 3.2.8)
|
85
67
|
bundler (~> 1.0)
|
86
|
-
railties (= 3.
|
87
|
-
railties (3.
|
88
|
-
actionpack (= 3.
|
89
|
-
activesupport (= 3.
|
68
|
+
railties (= 3.2.8)
|
69
|
+
railties (3.2.8)
|
70
|
+
actionpack (= 3.2.8)
|
71
|
+
activesupport (= 3.2.8)
|
72
|
+
rack-ssl (~> 1.3.2)
|
90
73
|
rake (>= 0.8.7)
|
91
74
|
rdoc (~> 3.4)
|
92
|
-
thor (
|
75
|
+
thor (>= 0.14.6, < 2.0)
|
93
76
|
rake (0.9.2.2)
|
94
|
-
rb-fchange (0.0.5)
|
95
|
-
ffi
|
96
|
-
rb-fsevent (0.9.1)
|
97
|
-
rb-inotify (0.8.8)
|
98
|
-
ffi (>= 0.5.0)
|
99
77
|
rdoc (3.12)
|
100
78
|
json (~> 1.4)
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
rspec-core (2.11.1)
|
106
|
-
rspec-expectations (2.11.2)
|
107
|
-
diff-lcs (~> 1.1.3)
|
108
|
-
rspec-mocks (2.11.1)
|
109
|
-
rspec-rails (2.11.0)
|
110
|
-
actionpack (>= 3.0)
|
111
|
-
activesupport (>= 3.0)
|
112
|
-
railties (>= 3.0)
|
113
|
-
rspec (~> 2.11.0)
|
114
|
-
spork (0.9.2)
|
79
|
+
sprockets (2.1.3)
|
80
|
+
hike (~> 1.2)
|
81
|
+
rack (~> 1.0)
|
82
|
+
tilt (~> 1.1, != 1.3.0)
|
115
83
|
sqlite3 (1.3.6)
|
116
84
|
sqlite3-ruby (1.3.3)
|
117
85
|
sqlite3 (>= 1.3.3)
|
118
|
-
thor (0.
|
86
|
+
thor (0.15.4)
|
87
|
+
tilt (1.3.3)
|
119
88
|
treetop (1.4.10)
|
120
89
|
polyglot
|
121
90
|
polyglot (>= 0.3.1)
|
@@ -126,17 +95,10 @@ PLATFORMS
|
|
126
95
|
ruby
|
127
96
|
|
128
97
|
DEPENDENCIES
|
129
|
-
factory_girl_rails (~> 1.7.0)
|
130
|
-
guard
|
131
|
-
guard-rspec
|
132
|
-
guard-spork
|
133
98
|
jeweler (~> 1.8.4)
|
134
|
-
libnotify
|
135
99
|
paper_trail (~> 2.0)
|
136
|
-
rails (~> 3.0
|
100
|
+
rails (~> 3.0)
|
137
101
|
rake
|
138
102
|
rdoc
|
139
|
-
rspec-rails (~> 2.11.0)
|
140
|
-
spork (~> 0.9.2)
|
141
103
|
sqlite3-ruby
|
142
104
|
will_paginate (~> 3.0.pre2)
|
data/README.md
CHANGED
@@ -27,6 +27,29 @@ Restart the server and go to the `/changes` URI to browse, subscribe, view and r
|
|
27
27
|
|
28
28
|
http://localhost:3000/changes
|
29
29
|
|
30
|
+
Development
|
31
|
+
-----------
|
32
|
+
|
33
|
+
Setup:
|
34
|
+
|
35
|
+
* Clone the repository
|
36
|
+
* Go into the directory
|
37
|
+
* Run `bundle` to install the development dependencies
|
38
|
+
|
39
|
+
Running tests:
|
40
|
+
|
41
|
+
* Run `rake` to run the tests. Note that the first time tests are run, gems will need to be downloaded for each individual version of Rails this app is tested against, which may take a while.
|
42
|
+
|
43
|
+
Adding support for new Rails versions:
|
44
|
+
|
45
|
+
* Run `./rails_test/generate_test_directory VERSION` where `VERSION` is the Rails version you want to add support for, e.g.: `./rails_test/generate_test_directory 3.2.8`
|
46
|
+
* Run `rake test:rails-VERSION`, e.g. `rake test:rails-3.2.8` to install dependencies and run the tests.
|
47
|
+
* Rerun the previous command to run tests for that specific version.
|
48
|
+
* Edit the files in `rails_test/common` which will be copied into the individual Rails apps, e.g. the tests run against individual Rails versions are stored in `rails_test/common/spec`.
|
49
|
+
* Edit the `./rails_test/generate_test_directory` file to modify files, e.g. setup routes.
|
50
|
+
* Fix whatever breaks.
|
51
|
+
* Please contribute your fixes with a Github pull request.
|
52
|
+
|
30
53
|
License
|
31
54
|
-------
|
32
55
|
|
data/Rakefile
CHANGED
@@ -5,32 +5,24 @@ RELEASE PROCESS
|
|
5
5
|
---------------
|
6
6
|
|
7
7
|
* Update VERSION file
|
8
|
-
* % rm -f Gemfile.lock; bundle
|
9
|
-
* %
|
10
|
-
* %
|
8
|
+
* % rm -f Gemfile.lock; bundle --local
|
9
|
+
* % rake gemspec build test
|
10
|
+
* % rake install
|
11
11
|
* Commit any changes
|
12
12
|
* % git tag v`cat VERSION`
|
13
13
|
* % git push --tags
|
14
|
-
* %
|
14
|
+
* % rake release
|
15
15
|
* % gem push $GEM
|
16
16
|
=end
|
17
17
|
|
18
18
|
require 'rubygems'
|
19
|
-
begin
|
20
|
-
require 'bundler/setup'
|
21
|
-
rescue LoadError
|
22
|
-
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
23
|
-
end
|
24
19
|
|
25
20
|
require 'rake'
|
26
21
|
require 'rdoc/task'
|
27
22
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
RSpec::Core::RakeTask.new(:spec)
|
32
|
-
|
33
|
-
task :default => :spec
|
23
|
+
task :default => 'test:rails'
|
24
|
+
task :spec => 'test:rails'
|
25
|
+
task :test => 'test:rails'
|
34
26
|
|
35
27
|
Rake::RDocTask.new(:rdoc) do |rdoc|
|
36
28
|
rdoc.rdoc_dir = 'rdoc'
|
@@ -44,19 +36,12 @@ require "jeweler"
|
|
44
36
|
Jeweler::Tasks.new do |gem|
|
45
37
|
gem.name = "paper_trail_manager"
|
46
38
|
gem.summary = gem.description = "A user interface for `paper_trail` versioning data in Ruby on Rails 3 applications."
|
47
|
-
gem.files =
|
39
|
+
gem.files = `git ls-files`.split("\n")
|
40
|
+
gem.test_files = `git ls-files -- {rails_test}/*`.split("\n")
|
48
41
|
|
49
42
|
gem.authors = ["Igal Koshevoy"]
|
50
43
|
gem.email = "igal@pragmaticraft.com"
|
51
44
|
gem.homepage = "http://github.com/igal/paper_trail_manager"
|
52
45
|
end
|
53
46
|
|
54
|
-
|
55
|
-
task :spec do
|
56
|
-
exec "rspec --drb spec"
|
57
|
-
end
|
58
|
-
|
59
|
-
task :serve do
|
60
|
-
exec "spork"
|
61
|
-
end
|
62
|
-
end
|
47
|
+
load 'rails_test/Rakefile'
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.2.0
|
data/paper_trail_manager.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "paper_trail_manager"
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.2.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Igal Koshevoy"]
|
12
|
-
s.date = "2012-08-
|
12
|
+
s.date = "2012-08-13"
|
13
13
|
s.description = "A user interface for `paper_trail` versioning data in Ruby on Rails 3 applications."
|
14
14
|
s.email = "igal@pragmaticraft.com"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -17,6 +17,9 @@ Gem::Specification.new do |s|
|
|
17
17
|
"README.md"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
|
+
".gitignore",
|
21
|
+
".travis.yml",
|
22
|
+
"CHANGES.md",
|
20
23
|
"Gemfile",
|
21
24
|
"Gemfile.lock",
|
22
25
|
"LICENSE.txt",
|
@@ -31,82 +34,320 @@ Gem::Specification.new do |s|
|
|
31
34
|
"app/views/paper_trail_manager/changes/show.html.erb",
|
32
35
|
"lib/paper_trail_manager.rb",
|
33
36
|
"paper_trail_manager.gemspec",
|
34
|
-
"
|
35
|
-
"
|
36
|
-
"
|
37
|
-
"
|
38
|
-
"
|
39
|
-
"
|
40
|
-
"
|
41
|
-
"
|
42
|
-
"
|
43
|
-
"
|
44
|
-
"
|
45
|
-
"
|
46
|
-
"
|
47
|
-
"
|
48
|
-
"
|
49
|
-
"
|
50
|
-
"
|
51
|
-
"
|
52
|
-
"
|
53
|
-
"
|
54
|
-
"
|
55
|
-
"
|
56
|
-
"
|
57
|
-
"
|
58
|
-
"
|
59
|
-
"spec/
|
60
|
-
"spec/
|
61
|
-
"
|
62
|
-
"
|
63
|
-
"
|
64
|
-
"
|
65
|
-
"
|
66
|
-
"
|
67
|
-
"
|
68
|
-
"
|
69
|
-
"
|
70
|
-
"spec/
|
71
|
-
"
|
72
|
-
"
|
73
|
-
"spec/
|
74
|
-
"spec/
|
75
|
-
"spec/
|
76
|
-
"spec/
|
77
|
-
"spec/
|
78
|
-
"spec/
|
79
|
-
"spec/
|
80
|
-
"spec/
|
81
|
-
"
|
82
|
-
"
|
83
|
-
"
|
84
|
-
"
|
85
|
-
"
|
86
|
-
"
|
87
|
-
"
|
88
|
-
"
|
89
|
-
"
|
90
|
-
"
|
91
|
-
"
|
92
|
-
"
|
93
|
-
"
|
94
|
-
"
|
95
|
-
"
|
96
|
-
"
|
97
|
-
"
|
98
|
-
"
|
99
|
-
"
|
100
|
-
"
|
101
|
-
"
|
102
|
-
"
|
103
|
-
"
|
104
|
-
"
|
105
|
-
"
|
106
|
-
"
|
107
|
-
"
|
108
|
-
"
|
109
|
-
"
|
37
|
+
"rails_test/Rakefile",
|
38
|
+
"rails_test/common/app/controllers/application_controller.rb",
|
39
|
+
"rails_test/common/app/controllers/entities_controller.rb",
|
40
|
+
"rails_test/common/app/controllers/platforms_controller.rb",
|
41
|
+
"rails_test/common/app/helpers/application_helper.rb",
|
42
|
+
"rails_test/common/app/helpers/entities_helper.rb",
|
43
|
+
"rails_test/common/app/helpers/platforms_helper.rb",
|
44
|
+
"rails_test/common/app/models/entity.rb",
|
45
|
+
"rails_test/common/app/models/platform.rb",
|
46
|
+
"rails_test/common/app/views/application/index.html.erb",
|
47
|
+
"rails_test/common/app/views/entities/_form.html.erb",
|
48
|
+
"rails_test/common/app/views/entities/edit.html.erb",
|
49
|
+
"rails_test/common/app/views/entities/index.html.erb",
|
50
|
+
"rails_test/common/app/views/entities/new.html.erb",
|
51
|
+
"rails_test/common/app/views/entities/show.html.erb",
|
52
|
+
"rails_test/common/app/views/layouts/application.html.erb",
|
53
|
+
"rails_test/common/app/views/platforms/_form.html.erb",
|
54
|
+
"rails_test/common/app/views/platforms/edit.html.erb",
|
55
|
+
"rails_test/common/app/views/platforms/index.html.erb",
|
56
|
+
"rails_test/common/app/views/platforms/new.html.erb",
|
57
|
+
"rails_test/common/app/views/platforms/show.html.erb",
|
58
|
+
"rails_test/common/config/database.yml",
|
59
|
+
"rails_test/common/db/migrate/20110228091428_create_entities.rb",
|
60
|
+
"rails_test/common/db/migrate/20110228093241_create_platforms.rb",
|
61
|
+
"rails_test/common/db/migrate/20110228094444_create_versions.rb",
|
62
|
+
"rails_test/common/spec/controllers/entities_controller_spec.rb",
|
63
|
+
"rails_test/common/spec/controllers/platforms_controller_spec.rb",
|
64
|
+
"rails_test/common/spec/helpers/entities_helper_spec.rb",
|
65
|
+
"rails_test/common/spec/helpers/platforms_helper_spec.rb",
|
66
|
+
"rails_test/common/spec/integration/navigation_spec.rb",
|
67
|
+
"rails_test/common/spec/integration/paper_trail_manager_spec.rb",
|
68
|
+
"rails_test/common/spec/models/entity_spec.rb",
|
69
|
+
"rails_test/common/spec/models/platform_spec.rb",
|
70
|
+
"rails_test/common/spec/requests/entities_spec.rb",
|
71
|
+
"rails_test/common/spec/requests/platforms_spec.rb",
|
72
|
+
"rails_test/common/spec/routing/entities_routing_spec.rb",
|
73
|
+
"rails_test/common/spec/routing/platforms_routing_spec.rb",
|
74
|
+
"rails_test/common/spec/spec_helper.rb",
|
75
|
+
"rails_test/common/spec/support/factories.rb",
|
76
|
+
"rails_test/common/spec/views/entities/edit.html.erb_spec.rb",
|
77
|
+
"rails_test/common/spec/views/entities/index.html.erb_spec.rb",
|
78
|
+
"rails_test/common/spec/views/entities/new.html.erb_spec.rb",
|
79
|
+
"rails_test/common/spec/views/entities/show.html.erb_spec.rb",
|
80
|
+
"rails_test/common/spec/views/platforms/edit.html.erb_spec.rb",
|
81
|
+
"rails_test/common/spec/views/platforms/index.html.erb_spec.rb",
|
82
|
+
"rails_test/common/spec/views/platforms/new.html.erb_spec.rb",
|
83
|
+
"rails_test/common/spec/views/platforms/show.html.erb_spec.rb",
|
84
|
+
"rails_test/generate_test_directory",
|
85
|
+
"rails_test/rails-3.0.17/.gitignore",
|
86
|
+
"rails_test/rails-3.0.17/README",
|
87
|
+
"rails_test/rails-3.0.17/Rakefile",
|
88
|
+
"rails_test/rails-3.0.17/app/controllers/application_controller.rb",
|
89
|
+
"rails_test/rails-3.0.17/app/controllers/entities_controller.rb",
|
90
|
+
"rails_test/rails-3.0.17/app/controllers/platforms_controller.rb",
|
91
|
+
"rails_test/rails-3.0.17/app/helpers/application_helper.rb",
|
92
|
+
"rails_test/rails-3.0.17/app/helpers/entities_helper.rb",
|
93
|
+
"rails_test/rails-3.0.17/app/helpers/platforms_helper.rb",
|
94
|
+
"rails_test/rails-3.0.17/app/models/entity.rb",
|
95
|
+
"rails_test/rails-3.0.17/app/models/platform.rb",
|
96
|
+
"rails_test/rails-3.0.17/app/views/application/index.html.erb",
|
97
|
+
"rails_test/rails-3.0.17/app/views/entities/_form.html.erb",
|
98
|
+
"rails_test/rails-3.0.17/app/views/entities/edit.html.erb",
|
99
|
+
"rails_test/rails-3.0.17/app/views/entities/index.html.erb",
|
100
|
+
"rails_test/rails-3.0.17/app/views/entities/new.html.erb",
|
101
|
+
"rails_test/rails-3.0.17/app/views/entities/show.html.erb",
|
102
|
+
"rails_test/rails-3.0.17/app/views/layouts/application.html.erb",
|
103
|
+
"rails_test/rails-3.0.17/app/views/platforms/_form.html.erb",
|
104
|
+
"rails_test/rails-3.0.17/app/views/platforms/edit.html.erb",
|
105
|
+
"rails_test/rails-3.0.17/app/views/platforms/index.html.erb",
|
106
|
+
"rails_test/rails-3.0.17/app/views/platforms/new.html.erb",
|
107
|
+
"rails_test/rails-3.0.17/app/views/platforms/show.html.erb",
|
108
|
+
"rails_test/rails-3.0.17/config.ru",
|
109
|
+
"rails_test/rails-3.0.17/config/application.rb",
|
110
|
+
"rails_test/rails-3.0.17/config/boot.rb",
|
111
|
+
"rails_test/rails-3.0.17/config/database.yml",
|
112
|
+
"rails_test/rails-3.0.17/config/environment.rb",
|
113
|
+
"rails_test/rails-3.0.17/config/environments/development.rb",
|
114
|
+
"rails_test/rails-3.0.17/config/environments/production.rb",
|
115
|
+
"rails_test/rails-3.0.17/config/environments/test.rb",
|
116
|
+
"rails_test/rails-3.0.17/config/initializers/backtrace_silencers.rb",
|
117
|
+
"rails_test/rails-3.0.17/config/initializers/inflections.rb",
|
118
|
+
"rails_test/rails-3.0.17/config/initializers/mime_types.rb",
|
119
|
+
"rails_test/rails-3.0.17/config/initializers/secret_token.rb",
|
120
|
+
"rails_test/rails-3.0.17/config/initializers/session_store.rb",
|
121
|
+
"rails_test/rails-3.0.17/config/locales/en.yml",
|
122
|
+
"rails_test/rails-3.0.17/config/routes.rb",
|
123
|
+
"rails_test/rails-3.0.17/db/migrate/20110228091428_create_entities.rb",
|
124
|
+
"rails_test/rails-3.0.17/db/migrate/20110228093241_create_platforms.rb",
|
125
|
+
"rails_test/rails-3.0.17/db/migrate/20110228094444_create_versions.rb",
|
126
|
+
"rails_test/rails-3.0.17/db/schema.rb",
|
127
|
+
"rails_test/rails-3.0.17/db/seeds.rb",
|
128
|
+
"rails_test/rails-3.0.17/doc/README_FOR_APP",
|
129
|
+
"rails_test/rails-3.0.17/lib/tasks/.gitkeep",
|
130
|
+
"rails_test/rails-3.0.17/public/404.html",
|
131
|
+
"rails_test/rails-3.0.17/public/422.html",
|
132
|
+
"rails_test/rails-3.0.17/public/500.html",
|
133
|
+
"rails_test/rails-3.0.17/public/favicon.ico",
|
134
|
+
"rails_test/rails-3.0.17/public/images/rails.png",
|
135
|
+
"rails_test/rails-3.0.17/public/index.html",
|
136
|
+
"rails_test/rails-3.0.17/public/javascripts/application.js",
|
137
|
+
"rails_test/rails-3.0.17/public/javascripts/controls.js",
|
138
|
+
"rails_test/rails-3.0.17/public/javascripts/dragdrop.js",
|
139
|
+
"rails_test/rails-3.0.17/public/javascripts/effects.js",
|
140
|
+
"rails_test/rails-3.0.17/public/javascripts/prototype.js",
|
141
|
+
"rails_test/rails-3.0.17/public/javascripts/rails.js",
|
142
|
+
"rails_test/rails-3.0.17/public/robots.txt",
|
143
|
+
"rails_test/rails-3.0.17/public/stylesheets/.gitkeep",
|
144
|
+
"rails_test/rails-3.0.17/script/rails",
|
145
|
+
"rails_test/rails-3.0.17/spec/controllers/entities_controller_spec.rb",
|
146
|
+
"rails_test/rails-3.0.17/spec/controllers/platforms_controller_spec.rb",
|
147
|
+
"rails_test/rails-3.0.17/spec/helpers/entities_helper_spec.rb",
|
148
|
+
"rails_test/rails-3.0.17/spec/helpers/platforms_helper_spec.rb",
|
149
|
+
"rails_test/rails-3.0.17/spec/integration/navigation_spec.rb",
|
150
|
+
"rails_test/rails-3.0.17/spec/integration/paper_trail_manager_spec.rb",
|
151
|
+
"rails_test/rails-3.0.17/spec/models/entity_spec.rb",
|
152
|
+
"rails_test/rails-3.0.17/spec/models/platform_spec.rb",
|
153
|
+
"rails_test/rails-3.0.17/spec/requests/entities_spec.rb",
|
154
|
+
"rails_test/rails-3.0.17/spec/requests/platforms_spec.rb",
|
155
|
+
"rails_test/rails-3.0.17/spec/routing/entities_routing_spec.rb",
|
156
|
+
"rails_test/rails-3.0.17/spec/routing/platforms_routing_spec.rb",
|
157
|
+
"rails_test/rails-3.0.17/spec/spec_helper.rb",
|
158
|
+
"rails_test/rails-3.0.17/spec/support/factories.rb",
|
159
|
+
"rails_test/rails-3.0.17/spec/views/entities/edit.html.erb_spec.rb",
|
160
|
+
"rails_test/rails-3.0.17/spec/views/entities/index.html.erb_spec.rb",
|
161
|
+
"rails_test/rails-3.0.17/spec/views/entities/new.html.erb_spec.rb",
|
162
|
+
"rails_test/rails-3.0.17/spec/views/entities/show.html.erb_spec.rb",
|
163
|
+
"rails_test/rails-3.0.17/spec/views/platforms/edit.html.erb_spec.rb",
|
164
|
+
"rails_test/rails-3.0.17/spec/views/platforms/index.html.erb_spec.rb",
|
165
|
+
"rails_test/rails-3.0.17/spec/views/platforms/new.html.erb_spec.rb",
|
166
|
+
"rails_test/rails-3.0.17/spec/views/platforms/show.html.erb_spec.rb",
|
167
|
+
"rails_test/rails-3.0.17/test/performance/browsing_test.rb",
|
168
|
+
"rails_test/rails-3.0.17/test/test_helper.rb",
|
169
|
+
"rails_test/rails-3.0.17/vendor/plugins/.gitkeep",
|
170
|
+
"rails_test/rails-3.1.8/.gitignore",
|
171
|
+
"rails_test/rails-3.1.8/README",
|
172
|
+
"rails_test/rails-3.1.8/Rakefile",
|
173
|
+
"rails_test/rails-3.1.8/app/assets/images/rails.png",
|
174
|
+
"rails_test/rails-3.1.8/app/assets/javascripts/application.js",
|
175
|
+
"rails_test/rails-3.1.8/app/assets/stylesheets/application.css",
|
176
|
+
"rails_test/rails-3.1.8/app/controllers/application_controller.rb",
|
177
|
+
"rails_test/rails-3.1.8/app/controllers/entities_controller.rb",
|
178
|
+
"rails_test/rails-3.1.8/app/controllers/platforms_controller.rb",
|
179
|
+
"rails_test/rails-3.1.8/app/helpers/application_helper.rb",
|
180
|
+
"rails_test/rails-3.1.8/app/helpers/entities_helper.rb",
|
181
|
+
"rails_test/rails-3.1.8/app/helpers/platforms_helper.rb",
|
182
|
+
"rails_test/rails-3.1.8/app/mailers/.gitkeep",
|
183
|
+
"rails_test/rails-3.1.8/app/models/.gitkeep",
|
184
|
+
"rails_test/rails-3.1.8/app/models/entity.rb",
|
185
|
+
"rails_test/rails-3.1.8/app/models/platform.rb",
|
186
|
+
"rails_test/rails-3.1.8/app/views/application/index.html.erb",
|
187
|
+
"rails_test/rails-3.1.8/app/views/entities/_form.html.erb",
|
188
|
+
"rails_test/rails-3.1.8/app/views/entities/edit.html.erb",
|
189
|
+
"rails_test/rails-3.1.8/app/views/entities/index.html.erb",
|
190
|
+
"rails_test/rails-3.1.8/app/views/entities/new.html.erb",
|
191
|
+
"rails_test/rails-3.1.8/app/views/entities/show.html.erb",
|
192
|
+
"rails_test/rails-3.1.8/app/views/layouts/application.html.erb",
|
193
|
+
"rails_test/rails-3.1.8/app/views/platforms/_form.html.erb",
|
194
|
+
"rails_test/rails-3.1.8/app/views/platforms/edit.html.erb",
|
195
|
+
"rails_test/rails-3.1.8/app/views/platforms/index.html.erb",
|
196
|
+
"rails_test/rails-3.1.8/app/views/platforms/new.html.erb",
|
197
|
+
"rails_test/rails-3.1.8/app/views/platforms/show.html.erb",
|
198
|
+
"rails_test/rails-3.1.8/config.ru",
|
199
|
+
"rails_test/rails-3.1.8/config/application.rb",
|
200
|
+
"rails_test/rails-3.1.8/config/boot.rb",
|
201
|
+
"rails_test/rails-3.1.8/config/database.yml",
|
202
|
+
"rails_test/rails-3.1.8/config/environment.rb",
|
203
|
+
"rails_test/rails-3.1.8/config/environments/development.rb",
|
204
|
+
"rails_test/rails-3.1.8/config/environments/production.rb",
|
205
|
+
"rails_test/rails-3.1.8/config/environments/test.rb",
|
206
|
+
"rails_test/rails-3.1.8/config/initializers/backtrace_silencers.rb",
|
207
|
+
"rails_test/rails-3.1.8/config/initializers/inflections.rb",
|
208
|
+
"rails_test/rails-3.1.8/config/initializers/mime_types.rb",
|
209
|
+
"rails_test/rails-3.1.8/config/initializers/secret_token.rb",
|
210
|
+
"rails_test/rails-3.1.8/config/initializers/session_store.rb",
|
211
|
+
"rails_test/rails-3.1.8/config/initializers/wrap_parameters.rb",
|
212
|
+
"rails_test/rails-3.1.8/config/locales/en.yml",
|
213
|
+
"rails_test/rails-3.1.8/config/routes.rb",
|
214
|
+
"rails_test/rails-3.1.8/db/migrate/20110228091428_create_entities.rb",
|
215
|
+
"rails_test/rails-3.1.8/db/migrate/20110228093241_create_platforms.rb",
|
216
|
+
"rails_test/rails-3.1.8/db/migrate/20110228094444_create_versions.rb",
|
217
|
+
"rails_test/rails-3.1.8/db/schema.rb",
|
218
|
+
"rails_test/rails-3.1.8/db/seeds.rb",
|
219
|
+
"rails_test/rails-3.1.8/doc/README_FOR_APP",
|
220
|
+
"rails_test/rails-3.1.8/lib/assets/.gitkeep",
|
221
|
+
"rails_test/rails-3.1.8/lib/tasks/.gitkeep",
|
222
|
+
"rails_test/rails-3.1.8/log/.gitkeep",
|
223
|
+
"rails_test/rails-3.1.8/public/404.html",
|
224
|
+
"rails_test/rails-3.1.8/public/422.html",
|
225
|
+
"rails_test/rails-3.1.8/public/500.html",
|
226
|
+
"rails_test/rails-3.1.8/public/favicon.ico",
|
227
|
+
"rails_test/rails-3.1.8/public/index.html",
|
228
|
+
"rails_test/rails-3.1.8/public/robots.txt",
|
229
|
+
"rails_test/rails-3.1.8/script/rails",
|
230
|
+
"rails_test/rails-3.1.8/spec/controllers/entities_controller_spec.rb",
|
231
|
+
"rails_test/rails-3.1.8/spec/controllers/platforms_controller_spec.rb",
|
232
|
+
"rails_test/rails-3.1.8/spec/helpers/entities_helper_spec.rb",
|
233
|
+
"rails_test/rails-3.1.8/spec/helpers/platforms_helper_spec.rb",
|
234
|
+
"rails_test/rails-3.1.8/spec/integration/navigation_spec.rb",
|
235
|
+
"rails_test/rails-3.1.8/spec/integration/paper_trail_manager_spec.rb",
|
236
|
+
"rails_test/rails-3.1.8/spec/models/entity_spec.rb",
|
237
|
+
"rails_test/rails-3.1.8/spec/models/platform_spec.rb",
|
238
|
+
"rails_test/rails-3.1.8/spec/requests/entities_spec.rb",
|
239
|
+
"rails_test/rails-3.1.8/spec/requests/platforms_spec.rb",
|
240
|
+
"rails_test/rails-3.1.8/spec/routing/entities_routing_spec.rb",
|
241
|
+
"rails_test/rails-3.1.8/spec/routing/platforms_routing_spec.rb",
|
242
|
+
"rails_test/rails-3.1.8/spec/spec_helper.rb",
|
243
|
+
"rails_test/rails-3.1.8/spec/support/factories.rb",
|
244
|
+
"rails_test/rails-3.1.8/spec/views/entities/edit.html.erb_spec.rb",
|
245
|
+
"rails_test/rails-3.1.8/spec/views/entities/index.html.erb_spec.rb",
|
246
|
+
"rails_test/rails-3.1.8/spec/views/entities/new.html.erb_spec.rb",
|
247
|
+
"rails_test/rails-3.1.8/spec/views/entities/show.html.erb_spec.rb",
|
248
|
+
"rails_test/rails-3.1.8/spec/views/platforms/edit.html.erb_spec.rb",
|
249
|
+
"rails_test/rails-3.1.8/spec/views/platforms/index.html.erb_spec.rb",
|
250
|
+
"rails_test/rails-3.1.8/spec/views/platforms/new.html.erb_spec.rb",
|
251
|
+
"rails_test/rails-3.1.8/spec/views/platforms/show.html.erb_spec.rb",
|
252
|
+
"rails_test/rails-3.1.8/test/fixtures/.gitkeep",
|
253
|
+
"rails_test/rails-3.1.8/test/functional/.gitkeep",
|
254
|
+
"rails_test/rails-3.1.8/test/integration/.gitkeep",
|
255
|
+
"rails_test/rails-3.1.8/test/performance/browsing_test.rb",
|
256
|
+
"rails_test/rails-3.1.8/test/test_helper.rb",
|
257
|
+
"rails_test/rails-3.1.8/test/unit/.gitkeep",
|
258
|
+
"rails_test/rails-3.1.8/vendor/assets/stylesheets/.gitkeep",
|
259
|
+
"rails_test/rails-3.1.8/vendor/plugins/.gitkeep",
|
260
|
+
"rails_test/rails-3.2.8/.gitignore",
|
261
|
+
"rails_test/rails-3.2.8/README.rdoc",
|
262
|
+
"rails_test/rails-3.2.8/Rakefile",
|
263
|
+
"rails_test/rails-3.2.8/app/assets/images/rails.png",
|
264
|
+
"rails_test/rails-3.2.8/app/assets/javascripts/application.js",
|
265
|
+
"rails_test/rails-3.2.8/app/assets/stylesheets/application.css",
|
266
|
+
"rails_test/rails-3.2.8/app/controllers/application_controller.rb",
|
267
|
+
"rails_test/rails-3.2.8/app/controllers/entities_controller.rb",
|
268
|
+
"rails_test/rails-3.2.8/app/controllers/platforms_controller.rb",
|
269
|
+
"rails_test/rails-3.2.8/app/helpers/application_helper.rb",
|
270
|
+
"rails_test/rails-3.2.8/app/helpers/entities_helper.rb",
|
271
|
+
"rails_test/rails-3.2.8/app/helpers/platforms_helper.rb",
|
272
|
+
"rails_test/rails-3.2.8/app/mailers/.gitkeep",
|
273
|
+
"rails_test/rails-3.2.8/app/models/.gitkeep",
|
274
|
+
"rails_test/rails-3.2.8/app/models/entity.rb",
|
275
|
+
"rails_test/rails-3.2.8/app/models/platform.rb",
|
276
|
+
"rails_test/rails-3.2.8/app/views/application/index.html.erb",
|
277
|
+
"rails_test/rails-3.2.8/app/views/entities/_form.html.erb",
|
278
|
+
"rails_test/rails-3.2.8/app/views/entities/edit.html.erb",
|
279
|
+
"rails_test/rails-3.2.8/app/views/entities/index.html.erb",
|
280
|
+
"rails_test/rails-3.2.8/app/views/entities/new.html.erb",
|
281
|
+
"rails_test/rails-3.2.8/app/views/entities/show.html.erb",
|
282
|
+
"rails_test/rails-3.2.8/app/views/layouts/application.html.erb",
|
283
|
+
"rails_test/rails-3.2.8/app/views/platforms/_form.html.erb",
|
284
|
+
"rails_test/rails-3.2.8/app/views/platforms/edit.html.erb",
|
285
|
+
"rails_test/rails-3.2.8/app/views/platforms/index.html.erb",
|
286
|
+
"rails_test/rails-3.2.8/app/views/platforms/new.html.erb",
|
287
|
+
"rails_test/rails-3.2.8/app/views/platforms/show.html.erb",
|
288
|
+
"rails_test/rails-3.2.8/config.ru",
|
289
|
+
"rails_test/rails-3.2.8/config/application.rb",
|
290
|
+
"rails_test/rails-3.2.8/config/boot.rb",
|
291
|
+
"rails_test/rails-3.2.8/config/database.yml",
|
292
|
+
"rails_test/rails-3.2.8/config/environment.rb",
|
293
|
+
"rails_test/rails-3.2.8/config/environments/development.rb",
|
294
|
+
"rails_test/rails-3.2.8/config/environments/production.rb",
|
295
|
+
"rails_test/rails-3.2.8/config/environments/test.rb",
|
296
|
+
"rails_test/rails-3.2.8/config/initializers/backtrace_silencers.rb",
|
297
|
+
"rails_test/rails-3.2.8/config/initializers/inflections.rb",
|
298
|
+
"rails_test/rails-3.2.8/config/initializers/mime_types.rb",
|
299
|
+
"rails_test/rails-3.2.8/config/initializers/secret_token.rb",
|
300
|
+
"rails_test/rails-3.2.8/config/initializers/session_store.rb",
|
301
|
+
"rails_test/rails-3.2.8/config/initializers/wrap_parameters.rb",
|
302
|
+
"rails_test/rails-3.2.8/config/locales/en.yml",
|
303
|
+
"rails_test/rails-3.2.8/config/routes.rb",
|
304
|
+
"rails_test/rails-3.2.8/db/migrate/20110228091428_create_entities.rb",
|
305
|
+
"rails_test/rails-3.2.8/db/migrate/20110228093241_create_platforms.rb",
|
306
|
+
"rails_test/rails-3.2.8/db/migrate/20110228094444_create_versions.rb",
|
307
|
+
"rails_test/rails-3.2.8/db/schema.rb",
|
308
|
+
"rails_test/rails-3.2.8/db/seeds.rb",
|
309
|
+
"rails_test/rails-3.2.8/doc/README_FOR_APP",
|
310
|
+
"rails_test/rails-3.2.8/lib/assets/.gitkeep",
|
311
|
+
"rails_test/rails-3.2.8/lib/tasks/.gitkeep",
|
312
|
+
"rails_test/rails-3.2.8/log/.gitkeep",
|
313
|
+
"rails_test/rails-3.2.8/public/404.html",
|
314
|
+
"rails_test/rails-3.2.8/public/422.html",
|
315
|
+
"rails_test/rails-3.2.8/public/500.html",
|
316
|
+
"rails_test/rails-3.2.8/public/favicon.ico",
|
317
|
+
"rails_test/rails-3.2.8/public/index.html",
|
318
|
+
"rails_test/rails-3.2.8/public/robots.txt",
|
319
|
+
"rails_test/rails-3.2.8/script/rails",
|
320
|
+
"rails_test/rails-3.2.8/spec/controllers/entities_controller_spec.rb",
|
321
|
+
"rails_test/rails-3.2.8/spec/controllers/platforms_controller_spec.rb",
|
322
|
+
"rails_test/rails-3.2.8/spec/helpers/entities_helper_spec.rb",
|
323
|
+
"rails_test/rails-3.2.8/spec/helpers/platforms_helper_spec.rb",
|
324
|
+
"rails_test/rails-3.2.8/spec/integration/navigation_spec.rb",
|
325
|
+
"rails_test/rails-3.2.8/spec/integration/paper_trail_manager_spec.rb",
|
326
|
+
"rails_test/rails-3.2.8/spec/models/entity_spec.rb",
|
327
|
+
"rails_test/rails-3.2.8/spec/models/platform_spec.rb",
|
328
|
+
"rails_test/rails-3.2.8/spec/requests/entities_spec.rb",
|
329
|
+
"rails_test/rails-3.2.8/spec/requests/platforms_spec.rb",
|
330
|
+
"rails_test/rails-3.2.8/spec/routing/entities_routing_spec.rb",
|
331
|
+
"rails_test/rails-3.2.8/spec/routing/platforms_routing_spec.rb",
|
332
|
+
"rails_test/rails-3.2.8/spec/spec_helper.rb",
|
333
|
+
"rails_test/rails-3.2.8/spec/support/factories.rb",
|
334
|
+
"rails_test/rails-3.2.8/spec/views/entities/edit.html.erb_spec.rb",
|
335
|
+
"rails_test/rails-3.2.8/spec/views/entities/index.html.erb_spec.rb",
|
336
|
+
"rails_test/rails-3.2.8/spec/views/entities/new.html.erb_spec.rb",
|
337
|
+
"rails_test/rails-3.2.8/spec/views/entities/show.html.erb_spec.rb",
|
338
|
+
"rails_test/rails-3.2.8/spec/views/platforms/edit.html.erb_spec.rb",
|
339
|
+
"rails_test/rails-3.2.8/spec/views/platforms/index.html.erb_spec.rb",
|
340
|
+
"rails_test/rails-3.2.8/spec/views/platforms/new.html.erb_spec.rb",
|
341
|
+
"rails_test/rails-3.2.8/spec/views/platforms/show.html.erb_spec.rb",
|
342
|
+
"rails_test/rails-3.2.8/test/fixtures/.gitkeep",
|
343
|
+
"rails_test/rails-3.2.8/test/functional/.gitkeep",
|
344
|
+
"rails_test/rails-3.2.8/test/integration/.gitkeep",
|
345
|
+
"rails_test/rails-3.2.8/test/performance/browsing_test.rb",
|
346
|
+
"rails_test/rails-3.2.8/test/test_helper.rb",
|
347
|
+
"rails_test/rails-3.2.8/test/unit/.gitkeep",
|
348
|
+
"rails_test/rails-3.2.8/vendor/assets/javascripts/.gitkeep",
|
349
|
+
"rails_test/rails-3.2.8/vendor/assets/stylesheets/.gitkeep",
|
350
|
+
"rails_test/rails-3.2.8/vendor/plugins/.gitkeep"
|
110
351
|
]
|
111
352
|
s.homepage = "http://github.com/igal/paper_trail_manager"
|
112
353
|
s.require_paths = ["lib"]
|
@@ -118,41 +359,29 @@ Gem::Specification.new do |s|
|
|
118
359
|
|
119
360
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
120
361
|
s.add_runtime_dependency(%q<rake>, [">= 0"])
|
121
|
-
s.add_runtime_dependency(%q<rails>, ["~> 3.0
|
362
|
+
s.add_runtime_dependency(%q<rails>, ["~> 3.0"])
|
122
363
|
s.add_runtime_dependency(%q<paper_trail>, ["~> 2.0"])
|
123
364
|
s.add_runtime_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
|
124
365
|
s.add_development_dependency(%q<rdoc>, [">= 0"])
|
125
366
|
s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
|
126
367
|
s.add_development_dependency(%q<sqlite3-ruby>, [">= 0"])
|
127
|
-
s.add_development_dependency(%q<guard>, [">= 0"])
|
128
|
-
s.add_development_dependency(%q<guard-rspec>, [">= 0"])
|
129
|
-
s.add_development_dependency(%q<guard-spork>, [">= 0"])
|
130
|
-
s.add_development_dependency(%q<libnotify>, [">= 0"])
|
131
368
|
else
|
132
369
|
s.add_dependency(%q<rake>, [">= 0"])
|
133
|
-
s.add_dependency(%q<rails>, ["~> 3.0
|
370
|
+
s.add_dependency(%q<rails>, ["~> 3.0"])
|
134
371
|
s.add_dependency(%q<paper_trail>, ["~> 2.0"])
|
135
372
|
s.add_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
|
136
373
|
s.add_dependency(%q<rdoc>, [">= 0"])
|
137
374
|
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
|
138
375
|
s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
|
139
|
-
s.add_dependency(%q<guard>, [">= 0"])
|
140
|
-
s.add_dependency(%q<guard-rspec>, [">= 0"])
|
141
|
-
s.add_dependency(%q<guard-spork>, [">= 0"])
|
142
|
-
s.add_dependency(%q<libnotify>, [">= 0"])
|
143
376
|
end
|
144
377
|
else
|
145
378
|
s.add_dependency(%q<rake>, [">= 0"])
|
146
|
-
s.add_dependency(%q<rails>, ["~> 3.0
|
379
|
+
s.add_dependency(%q<rails>, ["~> 3.0"])
|
147
380
|
s.add_dependency(%q<paper_trail>, ["~> 2.0"])
|
148
381
|
s.add_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
|
149
382
|
s.add_dependency(%q<rdoc>, [">= 0"])
|
150
383
|
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
|
151
384
|
s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
|
152
|
-
s.add_dependency(%q<guard>, [">= 0"])
|
153
|
-
s.add_dependency(%q<guard-rspec>, [">= 0"])
|
154
|
-
s.add_dependency(%q<guard-spork>, [">= 0"])
|
155
|
-
s.add_dependency(%q<libnotify>, [">= 0"])
|
156
385
|
end
|
157
386
|
end
|
158
387
|
|