paper_trail_manager 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +15 -7
- data/.travis.yml +9 -4
- data/Appraisals +15 -0
- data/CHANGES.md +5 -0
- data/Gemfile +3 -26
- data/README.md +6 -1
- data/Rakefile +8 -31
- data/app/controllers/paper_trail_manager/changes_controller.rb +3 -3
- data/app/helpers/paper_trail_manager/changes_helper.rb +1 -1
- data/app/views/paper_trail_manager/changes/_version.html.erb +1 -1
- data/gemfiles/rails_3.2.gemfile +7 -0
- data/gemfiles/rails_4.0.gemfile +7 -0
- data/gemfiles/rails_4.1.gemfile +7 -0
- data/gemfiles/rails_4.2.gemfile +7 -0
- data/lib/paper_trail_manager.rb +1 -0
- data/paper_trail_manager.gemspec +27 -381
- data/{rails_test/common/spec → spec}/controllers/entities_controller_spec.rb +1 -1
- data/{rails_test/common/spec → spec}/controllers/platforms_controller_spec.rb +1 -1
- data/{rails_test/rails-3.1.8 → spec/dummy}/.gitignore +0 -0
- data/spec/dummy/Gemfile +9 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/README.rdoc +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/Rakefile +0 -0
- data/{rails_test/rails-3.0.17/public → spec/dummy/app/assets}/images/rails.png +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/app/assets/javascripts/application.js +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/app/assets/stylesheets/application.css +0 -0
- data/{rails_test/common → spec/dummy}/app/controllers/application_controller.rb +0 -0
- data/{rails_test/common → spec/dummy}/app/controllers/entities_controller.rb +0 -0
- data/{rails_test/common → spec/dummy}/app/controllers/platforms_controller.rb +0 -0
- data/{rails_test/common → spec/dummy}/app/helpers/application_helper.rb +0 -0
- data/{rails_test/common → spec/dummy}/app/helpers/entities_helper.rb +0 -0
- data/{rails_test/common → spec/dummy}/app/helpers/platforms_helper.rb +0 -0
- data/{rails_test/rails-3.0.17/lib/tasks → spec/dummy/app/mailers}/.gitkeep +0 -0
- data/{rails_test/rails-3.0.17/public/stylesheets → spec/dummy/app/models}/.gitkeep +0 -0
- data/{rails_test/common → spec/dummy}/app/models/entity.rb +0 -2
- data/{rails_test/rails-3.1.8 → spec/dummy}/app/models/platform.rb +0 -2
- data/{rails_test/common → spec/dummy}/app/views/application/index.html.erb +0 -0
- data/{rails_test/common → spec/dummy}/app/views/entities/_form.html.erb +0 -0
- data/{rails_test/common → spec/dummy}/app/views/entities/edit.html.erb +0 -0
- data/{rails_test/rails-3.1.8 → spec/dummy}/app/views/entities/index.html.erb +1 -1
- data/{rails_test/common → spec/dummy}/app/views/entities/new.html.erb +0 -0
- data/{rails_test/common → spec/dummy}/app/views/entities/show.html.erb +0 -0
- data/{rails_test/common → spec/dummy}/app/views/layouts/application.html.erb +0 -0
- data/{rails_test/common → spec/dummy}/app/views/platforms/_form.html.erb +0 -0
- data/{rails_test/common → spec/dummy}/app/views/platforms/edit.html.erb +0 -0
- data/{rails_test/common → spec/dummy}/app/views/platforms/index.html.erb +1 -1
- data/{rails_test/common → spec/dummy}/app/views/platforms/new.html.erb +0 -0
- data/{rails_test/common → spec/dummy}/app/views/platforms/show.html.erb +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/config.ru +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/config/application.rb +3 -1
- data/{rails_test/rails-3.0.17 → spec/dummy}/config/boot.rb +0 -0
- data/{rails_test/common → spec/dummy}/config/database.yml +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/config/environment.rb +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/config/environments/development.rb +1 -1
- data/{rails_test/rails-3.2.8 → spec/dummy}/config/environments/production.rb +1 -1
- data/{rails_test/rails-3.2.8 → spec/dummy}/config/environments/test.rb +4 -5
- data/{rails_test/rails-3.0.17 → spec/dummy}/config/initializers/backtrace_silencers.rb +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/config/initializers/inflections.rb +0 -0
- data/{rails_test/rails-3.0.17 → spec/dummy}/config/initializers/mime_types.rb +0 -0
- data/{rails_test/rails-3.1.8 → spec/dummy}/config/initializers/secret_token.rb +1 -1
- data/{rails_test/rails-3.2.8 → spec/dummy}/config/initializers/session_store.rb +0 -0
- data/{rails_test/rails-3.1.8 → spec/dummy}/config/initializers/wrap_parameters.rb +0 -0
- data/{rails_test/rails-3.1.8 → spec/dummy}/config/locales/en.yml +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/config/routes.rb +0 -0
- data/{rails_test/common → spec/dummy}/db/migrate/20110228091428_create_entities.rb +0 -0
- data/{rails_test/common → spec/dummy}/db/migrate/20110228093241_create_platforms.rb +0 -0
- data/{rails_test/common → spec/dummy}/db/migrate/20110228094444_create_versions.rb +0 -0
- data/{rails_test/rails-3.1.8 → spec/dummy}/db/schema.rb +15 -14
- data/{rails_test/rails-3.1.8 → spec/dummy}/db/seeds.rb +0 -0
- data/{rails_test/rails-3.0.17 → spec/dummy}/doc/README_FOR_APP +0 -0
- data/{rails_test/rails-3.0.17/vendor/plugins → spec/dummy/lib/assets}/.gitkeep +0 -0
- data/{rails_test/rails-3.1.8/app/mailers → spec/dummy/lib/tasks}/.gitkeep +0 -0
- data/{rails_test/rails-3.1.8/app/models → spec/dummy/log}/.gitkeep +0 -0
- data/{rails_test/rails-3.0.17 → spec/dummy}/public/404.html +0 -0
- data/{rails_test/rails-3.0.17 → spec/dummy}/public/422.html +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/public/500.html +0 -0
- data/{rails_test/rails-3.0.17 → spec/dummy}/public/favicon.ico +0 -0
- data/{rails_test/rails-3.2.8 → spec/dummy}/public/index.html +0 -0
- data/{rails_test/rails-3.0.17 → spec/dummy}/public/robots.txt +0 -0
- data/{rails_test/rails-3.0.17 → spec/dummy}/script/rails +0 -0
- data/{rails_test/rails-3.1.8/lib/assets → spec/dummy/test/fixtures}/.gitkeep +0 -0
- data/{rails_test/rails-3.1.8/lib/tasks → spec/dummy/test/functional}/.gitkeep +0 -0
- data/{rails_test/rails-3.1.8/log → spec/dummy/test/integration}/.gitkeep +0 -0
- data/{rails_test/rails-3.1.8 → spec/dummy}/test/performance/browsing_test.rb +0 -0
- data/{rails_test/rails-3.0.17 → spec/dummy}/test/test_helper.rb +0 -0
- data/{rails_test/rails-3.1.8/test/fixtures → spec/dummy/test/unit}/.gitkeep +0 -0
- data/{rails_test/rails-3.1.8/test/functional → spec/dummy/vendor/assets/javascripts}/.gitkeep +0 -0
- data/{rails_test/rails-3.1.8/test/integration → spec/dummy/vendor/assets/stylesheets}/.gitkeep +0 -0
- data/{rails_test/rails-3.1.8/test/unit → spec/dummy/vendor/plugins}/.gitkeep +0 -0
- data/{rails_test/common/spec → spec}/helpers/entities_helper_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/helpers/platforms_helper_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/integration/navigation_spec.rb +0 -0
- data/{rails_test/rails-3.1.8/spec → spec}/integration/paper_trail_manager_spec.rb +14 -14
- data/{rails_test/common/spec → spec}/models/entity_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/models/platform_spec.rb +0 -0
- data/spec/rails_helper.rb +27 -0
- data/{rails_test/common/spec → spec}/requests/entities_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/requests/platforms_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/routing/entities_routing_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/routing/platforms_routing_spec.rb +0 -0
- data/spec/spec_helper.rb +90 -0
- data/{rails_test/rails-3.0.17/spec → spec}/support/factories.rb +1 -1
- data/{rails_test/common/spec → spec}/views/entities/edit.html.erb_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/views/entities/index.html.erb_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/views/entities/new.html.erb_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/views/entities/show.html.erb_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/views/platforms/edit.html.erb_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/views/platforms/index.html.erb_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/views/platforms/new.html.erb_spec.rb +0 -0
- data/{rails_test/common/spec → spec}/views/platforms/show.html.erb_spec.rb +0 -0
- metadata +368 -458
- data/Gemfile.lock +0 -104
- data/VERSION +0 -1
- data/rails_test/Rakefile +0 -90
- data/rails_test/common/app/models/platform.rb +0 -8
- data/rails_test/common/app/views/entities/index.html.erb +0 -21
- data/rails_test/common/spec/integration/paper_trail_manager_spec.rb +0 -232
- data/rails_test/common/spec/spec_helper.rb +0 -32
- data/rails_test/common/spec/support/factories.rb +0 -14
- data/rails_test/generate_test_directory +0 -59
- data/rails_test/rails-3.0.17/.gitignore +0 -4
- data/rails_test/rails-3.0.17/README +0 -256
- data/rails_test/rails-3.0.17/Rakefile +0 -7
- data/rails_test/rails-3.0.17/app/controllers/application_controller.rb +0 -6
- data/rails_test/rails-3.0.17/app/controllers/entities_controller.rb +0 -83
- data/rails_test/rails-3.0.17/app/controllers/platforms_controller.rb +0 -83
- data/rails_test/rails-3.0.17/app/helpers/application_helper.rb +0 -2
- data/rails_test/rails-3.0.17/app/helpers/entities_helper.rb +0 -2
- data/rails_test/rails-3.0.17/app/helpers/platforms_helper.rb +0 -2
- data/rails_test/rails-3.0.17/app/models/entity.rb +0 -8
- data/rails_test/rails-3.0.17/app/models/platform.rb +0 -8
- data/rails_test/rails-3.0.17/app/views/application/index.html.erb +0 -6
- data/rails_test/rails-3.0.17/app/views/entities/_form.html.erb +0 -17
- data/rails_test/rails-3.0.17/app/views/entities/edit.html.erb +0 -6
- data/rails_test/rails-3.0.17/app/views/entities/index.html.erb +0 -21
- data/rails_test/rails-3.0.17/app/views/entities/new.html.erb +0 -5
- data/rails_test/rails-3.0.17/app/views/entities/show.html.erb +0 -5
- data/rails_test/rails-3.0.17/app/views/layouts/application.html.erb +0 -14
- data/rails_test/rails-3.0.17/app/views/platforms/_form.html.erb +0 -17
- data/rails_test/rails-3.0.17/app/views/platforms/edit.html.erb +0 -6
- data/rails_test/rails-3.0.17/app/views/platforms/index.html.erb +0 -21
- data/rails_test/rails-3.0.17/app/views/platforms/new.html.erb +0 -5
- data/rails_test/rails-3.0.17/app/views/platforms/show.html.erb +0 -5
- data/rails_test/rails-3.0.17/config.ru +0 -4
- data/rails_test/rails-3.0.17/config/application.rb +0 -42
- data/rails_test/rails-3.0.17/config/database.yml +0 -22
- data/rails_test/rails-3.0.17/config/environment.rb +0 -5
- data/rails_test/rails-3.0.17/config/environments/development.rb +0 -26
- data/rails_test/rails-3.0.17/config/environments/production.rb +0 -49
- data/rails_test/rails-3.0.17/config/environments/test.rb +0 -35
- data/rails_test/rails-3.0.17/config/initializers/inflections.rb +0 -10
- data/rails_test/rails-3.0.17/config/initializers/secret_token.rb +0 -7
- data/rails_test/rails-3.0.17/config/initializers/session_store.rb +0 -8
- data/rails_test/rails-3.0.17/config/locales/en.yml +0 -5
- data/rails_test/rails-3.0.17/config/routes.rb +0 -8
- data/rails_test/rails-3.0.17/db/migrate/20110228091428_create_entities.rb +0 -14
- data/rails_test/rails-3.0.17/db/migrate/20110228093241_create_platforms.rb +0 -14
- data/rails_test/rails-3.0.17/db/migrate/20110228094444_create_versions.rb +0 -18
- data/rails_test/rails-3.0.17/db/schema.rb +0 -40
- data/rails_test/rails-3.0.17/db/seeds.rb +0 -7
- data/rails_test/rails-3.0.17/public/500.html +0 -26
- data/rails_test/rails-3.0.17/public/index.html +0 -239
- data/rails_test/rails-3.0.17/public/javascripts/application.js +0 -2
- data/rails_test/rails-3.0.17/public/javascripts/controls.js +0 -965
- data/rails_test/rails-3.0.17/public/javascripts/dragdrop.js +0 -974
- data/rails_test/rails-3.0.17/public/javascripts/effects.js +0 -1123
- data/rails_test/rails-3.0.17/public/javascripts/prototype.js +0 -6001
- data/rails_test/rails-3.0.17/public/javascripts/rails.js +0 -202
- data/rails_test/rails-3.0.17/spec/controllers/entities_controller_spec.rb +0 -125
- data/rails_test/rails-3.0.17/spec/controllers/platforms_controller_spec.rb +0 -125
- data/rails_test/rails-3.0.17/spec/helpers/entities_helper_spec.rb +0 -15
- data/rails_test/rails-3.0.17/spec/helpers/platforms_helper_spec.rb +0 -15
- data/rails_test/rails-3.0.17/spec/integration/navigation_spec.rb +0 -7
- data/rails_test/rails-3.0.17/spec/integration/paper_trail_manager_spec.rb +0 -232
- data/rails_test/rails-3.0.17/spec/models/entity_spec.rb +0 -14
- data/rails_test/rails-3.0.17/spec/models/platform_spec.rb +0 -14
- data/rails_test/rails-3.0.17/spec/requests/entities_spec.rb +0 -11
- data/rails_test/rails-3.0.17/spec/requests/platforms_spec.rb +0 -11
- data/rails_test/rails-3.0.17/spec/routing/entities_routing_spec.rb +0 -35
- data/rails_test/rails-3.0.17/spec/routing/platforms_routing_spec.rb +0 -35
- data/rails_test/rails-3.0.17/spec/spec_helper.rb +0 -32
- data/rails_test/rails-3.0.17/spec/views/entities/edit.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.0.17/spec/views/entities/index.html.erb_spec.rb +0 -14
- data/rails_test/rails-3.0.17/spec/views/entities/new.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.0.17/spec/views/entities/show.html.erb_spec.rb +0 -11
- data/rails_test/rails-3.0.17/spec/views/platforms/edit.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.0.17/spec/views/platforms/index.html.erb_spec.rb +0 -14
- data/rails_test/rails-3.0.17/spec/views/platforms/new.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.0.17/spec/views/platforms/show.html.erb_spec.rb +0 -11
- data/rails_test/rails-3.0.17/test/performance/browsing_test.rb +0 -9
- data/rails_test/rails-3.1.8/README +0 -261
- data/rails_test/rails-3.1.8/Rakefile +0 -7
- 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 +0 -9
- data/rails_test/rails-3.1.8/app/assets/stylesheets/application.css +0 -7
- data/rails_test/rails-3.1.8/app/controllers/application_controller.rb +0 -6
- data/rails_test/rails-3.1.8/app/controllers/entities_controller.rb +0 -83
- data/rails_test/rails-3.1.8/app/controllers/platforms_controller.rb +0 -83
- data/rails_test/rails-3.1.8/app/helpers/application_helper.rb +0 -2
- data/rails_test/rails-3.1.8/app/helpers/entities_helper.rb +0 -2
- data/rails_test/rails-3.1.8/app/helpers/platforms_helper.rb +0 -2
- data/rails_test/rails-3.1.8/app/models/entity.rb +0 -8
- data/rails_test/rails-3.1.8/app/views/application/index.html.erb +0 -6
- data/rails_test/rails-3.1.8/app/views/entities/_form.html.erb +0 -17
- data/rails_test/rails-3.1.8/app/views/entities/edit.html.erb +0 -6
- data/rails_test/rails-3.1.8/app/views/entities/new.html.erb +0 -5
- data/rails_test/rails-3.1.8/app/views/entities/show.html.erb +0 -5
- data/rails_test/rails-3.1.8/app/views/layouts/application.html.erb +0 -14
- data/rails_test/rails-3.1.8/app/views/platforms/_form.html.erb +0 -17
- data/rails_test/rails-3.1.8/app/views/platforms/edit.html.erb +0 -6
- data/rails_test/rails-3.1.8/app/views/platforms/index.html.erb +0 -21
- data/rails_test/rails-3.1.8/app/views/platforms/new.html.erb +0 -5
- data/rails_test/rails-3.1.8/app/views/platforms/show.html.erb +0 -5
- data/rails_test/rails-3.1.8/config.ru +0 -4
- data/rails_test/rails-3.1.8/config/application.rb +0 -48
- data/rails_test/rails-3.1.8/config/boot.rb +0 -6
- data/rails_test/rails-3.1.8/config/database.yml +0 -22
- data/rails_test/rails-3.1.8/config/environment.rb +0 -5
- data/rails_test/rails-3.1.8/config/environments/development.rb +0 -30
- data/rails_test/rails-3.1.8/config/environments/production.rb +0 -60
- data/rails_test/rails-3.1.8/config/environments/test.rb +0 -39
- data/rails_test/rails-3.1.8/config/initializers/backtrace_silencers.rb +0 -7
- data/rails_test/rails-3.1.8/config/initializers/inflections.rb +0 -10
- data/rails_test/rails-3.1.8/config/initializers/mime_types.rb +0 -5
- data/rails_test/rails-3.1.8/config/initializers/session_store.rb +0 -8
- data/rails_test/rails-3.1.8/config/routes.rb +0 -8
- data/rails_test/rails-3.1.8/db/migrate/20110228091428_create_entities.rb +0 -14
- data/rails_test/rails-3.1.8/db/migrate/20110228093241_create_platforms.rb +0 -14
- data/rails_test/rails-3.1.8/db/migrate/20110228094444_create_versions.rb +0 -18
- data/rails_test/rails-3.1.8/doc/README_FOR_APP +0 -2
- data/rails_test/rails-3.1.8/public/404.html +0 -26
- data/rails_test/rails-3.1.8/public/422.html +0 -26
- data/rails_test/rails-3.1.8/public/500.html +0 -26
- data/rails_test/rails-3.1.8/public/favicon.ico +0 -0
- data/rails_test/rails-3.1.8/public/index.html +0 -241
- data/rails_test/rails-3.1.8/public/robots.txt +0 -5
- data/rails_test/rails-3.1.8/script/rails +0 -6
- data/rails_test/rails-3.1.8/spec/controllers/entities_controller_spec.rb +0 -125
- data/rails_test/rails-3.1.8/spec/controllers/platforms_controller_spec.rb +0 -125
- data/rails_test/rails-3.1.8/spec/helpers/entities_helper_spec.rb +0 -15
- data/rails_test/rails-3.1.8/spec/helpers/platforms_helper_spec.rb +0 -15
- data/rails_test/rails-3.1.8/spec/integration/navigation_spec.rb +0 -7
- data/rails_test/rails-3.1.8/spec/models/entity_spec.rb +0 -14
- data/rails_test/rails-3.1.8/spec/models/platform_spec.rb +0 -14
- data/rails_test/rails-3.1.8/spec/requests/entities_spec.rb +0 -11
- data/rails_test/rails-3.1.8/spec/requests/platforms_spec.rb +0 -11
- data/rails_test/rails-3.1.8/spec/routing/entities_routing_spec.rb +0 -35
- data/rails_test/rails-3.1.8/spec/routing/platforms_routing_spec.rb +0 -35
- data/rails_test/rails-3.1.8/spec/spec_helper.rb +0 -32
- data/rails_test/rails-3.1.8/spec/support/factories.rb +0 -14
- data/rails_test/rails-3.1.8/spec/views/entities/edit.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.1.8/spec/views/entities/index.html.erb_spec.rb +0 -14
- data/rails_test/rails-3.1.8/spec/views/entities/new.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.1.8/spec/views/entities/show.html.erb_spec.rb +0 -11
- data/rails_test/rails-3.1.8/spec/views/platforms/edit.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.1.8/spec/views/platforms/index.html.erb_spec.rb +0 -14
- data/rails_test/rails-3.1.8/spec/views/platforms/new.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.1.8/spec/views/platforms/show.html.erb_spec.rb +0 -11
- data/rails_test/rails-3.1.8/test/test_helper.rb +0 -13
- 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 +0 -15
- data/rails_test/rails-3.2.8/app/assets/images/rails.png +0 -0
- data/rails_test/rails-3.2.8/app/controllers/application_controller.rb +0 -6
- data/rails_test/rails-3.2.8/app/controllers/entities_controller.rb +0 -83
- data/rails_test/rails-3.2.8/app/controllers/platforms_controller.rb +0 -83
- data/rails_test/rails-3.2.8/app/helpers/application_helper.rb +0 -2
- data/rails_test/rails-3.2.8/app/helpers/entities_helper.rb +0 -2
- data/rails_test/rails-3.2.8/app/helpers/platforms_helper.rb +0 -2
- 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 +0 -8
- data/rails_test/rails-3.2.8/app/models/platform.rb +0 -8
- data/rails_test/rails-3.2.8/app/views/application/index.html.erb +0 -6
- data/rails_test/rails-3.2.8/app/views/entities/_form.html.erb +0 -17
- data/rails_test/rails-3.2.8/app/views/entities/edit.html.erb +0 -6
- data/rails_test/rails-3.2.8/app/views/entities/index.html.erb +0 -21
- data/rails_test/rails-3.2.8/app/views/entities/new.html.erb +0 -5
- data/rails_test/rails-3.2.8/app/views/entities/show.html.erb +0 -5
- data/rails_test/rails-3.2.8/app/views/layouts/application.html.erb +0 -14
- data/rails_test/rails-3.2.8/app/views/platforms/_form.html.erb +0 -17
- data/rails_test/rails-3.2.8/app/views/platforms/edit.html.erb +0 -6
- data/rails_test/rails-3.2.8/app/views/platforms/index.html.erb +0 -21
- data/rails_test/rails-3.2.8/app/views/platforms/new.html.erb +0 -5
- data/rails_test/rails-3.2.8/app/views/platforms/show.html.erb +0 -5
- data/rails_test/rails-3.2.8/config/boot.rb +0 -6
- data/rails_test/rails-3.2.8/config/database.yml +0 -22
- data/rails_test/rails-3.2.8/config/initializers/backtrace_silencers.rb +0 -7
- data/rails_test/rails-3.2.8/config/initializers/mime_types.rb +0 -5
- data/rails_test/rails-3.2.8/config/initializers/secret_token.rb +0 -7
- data/rails_test/rails-3.2.8/config/initializers/wrap_parameters.rb +0 -14
- data/rails_test/rails-3.2.8/config/locales/en.yml +0 -5
- data/rails_test/rails-3.2.8/db/migrate/20110228091428_create_entities.rb +0 -14
- data/rails_test/rails-3.2.8/db/migrate/20110228093241_create_platforms.rb +0 -14
- data/rails_test/rails-3.2.8/db/migrate/20110228094444_create_versions.rb +0 -18
- data/rails_test/rails-3.2.8/db/schema.rb +0 -40
- data/rails_test/rails-3.2.8/db/seeds.rb +0 -7
- data/rails_test/rails-3.2.8/doc/README_FOR_APP +0 -2
- 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 +0 -26
- data/rails_test/rails-3.2.8/public/422.html +0 -26
- data/rails_test/rails-3.2.8/public/favicon.ico +0 -0
- data/rails_test/rails-3.2.8/public/robots.txt +0 -5
- data/rails_test/rails-3.2.8/script/rails +0 -6
- data/rails_test/rails-3.2.8/spec/controllers/entities_controller_spec.rb +0 -125
- data/rails_test/rails-3.2.8/spec/controllers/platforms_controller_spec.rb +0 -125
- data/rails_test/rails-3.2.8/spec/helpers/entities_helper_spec.rb +0 -15
- data/rails_test/rails-3.2.8/spec/helpers/platforms_helper_spec.rb +0 -15
- data/rails_test/rails-3.2.8/spec/integration/navigation_spec.rb +0 -7
- data/rails_test/rails-3.2.8/spec/integration/paper_trail_manager_spec.rb +0 -232
- data/rails_test/rails-3.2.8/spec/models/entity_spec.rb +0 -14
- data/rails_test/rails-3.2.8/spec/models/platform_spec.rb +0 -14
- data/rails_test/rails-3.2.8/spec/requests/entities_spec.rb +0 -11
- data/rails_test/rails-3.2.8/spec/requests/platforms_spec.rb +0 -11
- data/rails_test/rails-3.2.8/spec/routing/entities_routing_spec.rb +0 -35
- data/rails_test/rails-3.2.8/spec/routing/platforms_routing_spec.rb +0 -35
- data/rails_test/rails-3.2.8/spec/spec_helper.rb +0 -32
- data/rails_test/rails-3.2.8/spec/support/factories.rb +0 -14
- data/rails_test/rails-3.2.8/spec/views/entities/edit.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.2.8/spec/views/entities/index.html.erb_spec.rb +0 -14
- data/rails_test/rails-3.2.8/spec/views/entities/new.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.2.8/spec/views/entities/show.html.erb_spec.rb +0 -11
- data/rails_test/rails-3.2.8/spec/views/platforms/edit.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.2.8/spec/views/platforms/index.html.erb_spec.rb +0 -14
- data/rails_test/rails-3.2.8/spec/views/platforms/new.html.erb_spec.rb +0 -15
- data/rails_test/rails-3.2.8/spec/views/platforms/show.html.erb_spec.rb +0 -11
- 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 +0 -12
- data/rails_test/rails-3.2.8/test/test_helper.rb +0 -13
- 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
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
|
2
|
+
ENV["RAILS_ENV"] ||= 'test'
|
|
3
|
+
require File.expand_path("../dummy/config/environment", __FILE__)
|
|
4
|
+
require "rspec/rails"
|
|
5
|
+
require "rspec/active_model/mocks"
|
|
6
|
+
|
|
7
|
+
RSpec.configure do |config|
|
|
8
|
+
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
9
|
+
# examples within a transaction, remove the following line or assign false
|
|
10
|
+
# instead of true.
|
|
11
|
+
config.use_transactional_fixtures = true
|
|
12
|
+
|
|
13
|
+
# RSpec Rails can automatically mix in different behaviours to your tests
|
|
14
|
+
# based on their file location, for example enabling you to call `get` and
|
|
15
|
+
# `post` in specs under `spec/controllers`.
|
|
16
|
+
#
|
|
17
|
+
# You can disable this behaviour by removing the line below, and instead
|
|
18
|
+
# explicitly tag your specs with their type, e.g.:
|
|
19
|
+
#
|
|
20
|
+
# RSpec.describe UsersController, :type => :controller do
|
|
21
|
+
# # ...
|
|
22
|
+
# end
|
|
23
|
+
#
|
|
24
|
+
# The different available types are documented in the features, such as in
|
|
25
|
+
# https://relishapp.com/rspec/rspec-rails/docs
|
|
26
|
+
config.infer_spec_type_from_file_location!
|
|
27
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
require "rails_helper"
|
|
2
|
+
require "rspec/its"
|
|
3
|
+
require "byebug"
|
|
4
|
+
|
|
5
|
+
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
|
|
6
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
|
7
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause this
|
|
8
|
+
# file to always be loaded, without a need to explicitly require it in any files.
|
|
9
|
+
#
|
|
10
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
|
11
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
|
12
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
|
13
|
+
# individual file that may not need all of that loaded. Instead, make a
|
|
14
|
+
# separate helper file that requires this one and then use it only in the specs
|
|
15
|
+
# that actually need it.
|
|
16
|
+
#
|
|
17
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
|
18
|
+
# users commonly want.
|
|
19
|
+
#
|
|
20
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
21
|
+
|
|
22
|
+
# Requires supporting ruby files with custom matchers and macros, etc, in
|
|
23
|
+
# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
|
|
24
|
+
# run as spec files by default. This means that files in spec/support that end
|
|
25
|
+
# in _spec.rb will both be required and run as specs, causing the specs to be
|
|
26
|
+
# run twice. It is recommended that you do not name files matching this glob to
|
|
27
|
+
# end with _spec.rb. You can configure this pattern with with the --pattern
|
|
28
|
+
# option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
|
|
29
|
+
Dir["spec/support/**/*.rb"].each { |f| require File.expand_path(f) }
|
|
30
|
+
|
|
31
|
+
RSpec.configure do |config|
|
|
32
|
+
# config.include(Capybara::Webkit::RspecMatchers, :type => :feature)
|
|
33
|
+
|
|
34
|
+
# These two settings work together to allow you to limit a spec run
|
|
35
|
+
# to individual examples or groups you care about by tagging them with
|
|
36
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
|
37
|
+
# get run.
|
|
38
|
+
config.filter_run :focus
|
|
39
|
+
config.run_all_when_everything_filtered = true
|
|
40
|
+
|
|
41
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
|
42
|
+
# file, and it's useful to allow more verbose output when running an
|
|
43
|
+
# individual spec file.
|
|
44
|
+
if config.files_to_run.one?
|
|
45
|
+
# Use the documentation formatter for detailed output,
|
|
46
|
+
# unless a formatter has already been configured
|
|
47
|
+
# (e.g. via a command-line flag).
|
|
48
|
+
config.default_formatter = 'doc'
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# Print the 10 slowest examples and example groups at the
|
|
52
|
+
# end of the spec run, to help surface which specs are running
|
|
53
|
+
# particularly slow.
|
|
54
|
+
# config.profile_examples = 10
|
|
55
|
+
|
|
56
|
+
# Run specs in random order to surface order dependencies. If you find an
|
|
57
|
+
# order dependency and want to debug it, you can fix the order by providing
|
|
58
|
+
# the seed, which is printed after each run.
|
|
59
|
+
# --seed 1234
|
|
60
|
+
config.order = :random
|
|
61
|
+
|
|
62
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
|
63
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
|
64
|
+
# test failures related to randomization by passing the same `--seed` value
|
|
65
|
+
# as the one that triggered the failure.
|
|
66
|
+
Kernel.srand config.seed
|
|
67
|
+
|
|
68
|
+
# rspec-expectations config goes here. You can use an alternate
|
|
69
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
|
70
|
+
# assertions if you prefer.
|
|
71
|
+
config.expect_with :rspec do |expectations|
|
|
72
|
+
# Enable only the newer, non-monkey-patching expect syntax.
|
|
73
|
+
# For more details, see:
|
|
74
|
+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
|
75
|
+
expectations.syntax = [:should, :expect]
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
|
79
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
|
80
|
+
config.mock_with :rspec do |mocks|
|
|
81
|
+
# Enable only the newer, non-monkey-patching expect syntax.
|
|
82
|
+
# For more details, see:
|
|
83
|
+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
|
84
|
+
mocks.syntax = [:should, :expect]
|
|
85
|
+
|
|
86
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
|
87
|
+
# a real object. This is generally recommended.
|
|
88
|
+
# mocks.verify_partial_doubles = true
|
|
89
|
+
end
|
|
90
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,500 +1,410 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: paper_trail_manager
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 0
|
|
8
|
-
- 2
|
|
9
|
-
- 0
|
|
10
|
-
version: 0.2.0
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.3.0
|
|
11
5
|
platform: ruby
|
|
12
|
-
authors:
|
|
13
|
-
-
|
|
6
|
+
authors:
|
|
7
|
+
- mail@reidbeels.com
|
|
14
8
|
autorequire:
|
|
15
9
|
bindir: bin
|
|
16
10
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
requirements:
|
|
11
|
+
date: 2015-03-22 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
24
17
|
- - ">="
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
version:
|
|
30
|
-
name: rake
|
|
31
|
-
prerelease: false
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.0'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '5.0'
|
|
32
23
|
type: :runtime
|
|
33
|
-
requirement: *id001
|
|
34
|
-
- !ruby/object:Gem::Dependency
|
|
35
|
-
version_requirements: &id002 !ruby/object:Gem::Requirement
|
|
36
|
-
none: false
|
|
37
|
-
requirements:
|
|
38
|
-
- - ~>
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
hash: 7
|
|
41
|
-
segments:
|
|
42
|
-
- 3
|
|
43
|
-
- 0
|
|
44
|
-
version: "3.0"
|
|
45
|
-
name: rails
|
|
46
24
|
prerelease: false
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
segments:
|
|
57
|
-
- 2
|
|
58
|
-
- 0
|
|
59
|
-
version: "2.0"
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '3.0'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '5.0'
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
60
34
|
name: paper_trail
|
|
61
|
-
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '3.0'
|
|
62
40
|
type: :runtime
|
|
63
|
-
requirement: *id003
|
|
64
|
-
- !ruby/object:Gem::Dependency
|
|
65
|
-
version_requirements: &id004 !ruby/object:Gem::Requirement
|
|
66
|
-
none: false
|
|
67
|
-
requirements:
|
|
68
|
-
- - ~>
|
|
69
|
-
- !ruby/object:Gem::Version
|
|
70
|
-
hash: 1923831917
|
|
71
|
-
segments:
|
|
72
|
-
- 3
|
|
73
|
-
- 0
|
|
74
|
-
- pre
|
|
75
|
-
- 2
|
|
76
|
-
version: 3.0.pre2
|
|
77
|
-
name: will_paginate
|
|
78
41
|
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '3.0'
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: will_paginate
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '3.0'
|
|
79
54
|
type: :runtime
|
|
80
|
-
requirement: *id004
|
|
81
|
-
- !ruby/object:Gem::Dependency
|
|
82
|
-
version_requirements: &id005 !ruby/object:Gem::Requirement
|
|
83
|
-
none: false
|
|
84
|
-
requirements:
|
|
85
|
-
- - ">="
|
|
86
|
-
- !ruby/object:Gem::Version
|
|
87
|
-
hash: 3
|
|
88
|
-
segments:
|
|
89
|
-
- 0
|
|
90
|
-
version: "0"
|
|
91
|
-
name: rdoc
|
|
92
55
|
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '3.0'
|
|
61
|
+
- !ruby/object:Gem::Dependency
|
|
62
|
+
name: rake
|
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '10.4'
|
|
93
68
|
type: :development
|
|
94
|
-
requirement: *id005
|
|
95
|
-
- !ruby/object:Gem::Dependency
|
|
96
|
-
version_requirements: &id006 !ruby/object:Gem::Requirement
|
|
97
|
-
none: false
|
|
98
|
-
requirements:
|
|
99
|
-
- - ~>
|
|
100
|
-
- !ruby/object:Gem::Version
|
|
101
|
-
hash: 63
|
|
102
|
-
segments:
|
|
103
|
-
- 1
|
|
104
|
-
- 8
|
|
105
|
-
- 4
|
|
106
|
-
version: 1.8.4
|
|
107
|
-
name: jeweler
|
|
108
69
|
prerelease: false
|
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '10.4'
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
76
|
+
name: sqlite3
|
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '1.3'
|
|
82
|
+
type: :development
|
|
83
|
+
prerelease: false
|
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '1.3'
|
|
89
|
+
- !ruby/object:Gem::Dependency
|
|
90
|
+
name: factory_girl_rails
|
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - "~>"
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '4.0'
|
|
109
96
|
type: :development
|
|
110
|
-
requirement: *id006
|
|
111
|
-
- !ruby/object:Gem::Dependency
|
|
112
|
-
version_requirements: &id007 !ruby/object:Gem::Requirement
|
|
113
|
-
none: false
|
|
114
|
-
requirements:
|
|
115
|
-
- - ">="
|
|
116
|
-
- !ruby/object:Gem::Version
|
|
117
|
-
hash: 3
|
|
118
|
-
segments:
|
|
119
|
-
- 0
|
|
120
|
-
version: "0"
|
|
121
|
-
name: sqlite3-ruby
|
|
122
97
|
prerelease: false
|
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - "~>"
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '4.0'
|
|
103
|
+
- !ruby/object:Gem::Dependency
|
|
104
|
+
name: rspec-rails
|
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - "~>"
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '3.0'
|
|
123
110
|
type: :development
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
111
|
+
prerelease: false
|
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - "~>"
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '3.0'
|
|
117
|
+
- !ruby/object:Gem::Dependency
|
|
118
|
+
name: rspec-activemodel-mocks
|
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - "~>"
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '1.0'
|
|
124
|
+
type: :development
|
|
125
|
+
prerelease: false
|
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - "~>"
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '1.0'
|
|
131
|
+
- !ruby/object:Gem::Dependency
|
|
132
|
+
name: rspec-its
|
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - "~>"
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '1.0'
|
|
138
|
+
type: :development
|
|
139
|
+
prerelease: false
|
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - "~>"
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '1.0'
|
|
145
|
+
- !ruby/object:Gem::Dependency
|
|
146
|
+
name: appraisal
|
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - "~>"
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '1.0'
|
|
152
|
+
type: :development
|
|
153
|
+
prerelease: false
|
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - "~>"
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '1.0'
|
|
159
|
+
- !ruby/object:Gem::Dependency
|
|
160
|
+
name: byebug
|
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
|
162
|
+
requirements:
|
|
163
|
+
- - ">="
|
|
164
|
+
- !ruby/object:Gem::Version
|
|
165
|
+
version: '0'
|
|
166
|
+
type: :development
|
|
167
|
+
prerelease: false
|
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
169
|
+
requirements:
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: '0'
|
|
173
|
+
description: Browse, subscribe, view and revert changes to records when using Ruby
|
|
174
|
+
on Rails 3 and the `paper_trail` gem.
|
|
175
|
+
email:
|
|
127
176
|
executables: []
|
|
128
|
-
|
|
129
177
|
extensions: []
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
|
|
135
|
-
- .gitignore
|
|
136
|
-
- .travis.yml
|
|
178
|
+
extra_rdoc_files: []
|
|
179
|
+
files:
|
|
180
|
+
- ".gitignore"
|
|
181
|
+
- ".travis.yml"
|
|
182
|
+
- Appraisals
|
|
137
183
|
- CHANGES.md
|
|
138
184
|
- Gemfile
|
|
139
|
-
- Gemfile.lock
|
|
140
185
|
- LICENSE.txt
|
|
141
186
|
- README.md
|
|
142
187
|
- Rakefile
|
|
143
|
-
- VERSION
|
|
144
188
|
- app/controllers/paper_trail_manager/changes_controller.rb
|
|
145
189
|
- app/helpers/paper_trail_manager/changes_helper.rb
|
|
146
190
|
- app/views/paper_trail_manager/changes/_version.html.erb
|
|
147
191
|
- app/views/paper_trail_manager/changes/index.atom.builder
|
|
148
192
|
- app/views/paper_trail_manager/changes/index.html.erb
|
|
149
193
|
- app/views/paper_trail_manager/changes/show.html.erb
|
|
194
|
+
- gemfiles/rails_3.2.gemfile
|
|
195
|
+
- gemfiles/rails_4.0.gemfile
|
|
196
|
+
- gemfiles/rails_4.1.gemfile
|
|
197
|
+
- gemfiles/rails_4.2.gemfile
|
|
150
198
|
- lib/paper_trail_manager.rb
|
|
151
199
|
- paper_trail_manager.gemspec
|
|
152
|
-
-
|
|
153
|
-
-
|
|
154
|
-
-
|
|
155
|
-
-
|
|
156
|
-
-
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
166
|
-
-
|
|
167
|
-
-
|
|
168
|
-
-
|
|
169
|
-
-
|
|
170
|
-
-
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
-
|
|
177
|
-
-
|
|
178
|
-
-
|
|
179
|
-
-
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
-
|
|
183
|
-
-
|
|
184
|
-
-
|
|
185
|
-
-
|
|
186
|
-
-
|
|
187
|
-
-
|
|
188
|
-
-
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
-
|
|
192
|
-
-
|
|
193
|
-
-
|
|
194
|
-
-
|
|
195
|
-
-
|
|
196
|
-
-
|
|
197
|
-
-
|
|
198
|
-
-
|
|
199
|
-
-
|
|
200
|
-
-
|
|
201
|
-
-
|
|
202
|
-
-
|
|
203
|
-
-
|
|
204
|
-
-
|
|
205
|
-
-
|
|
206
|
-
-
|
|
207
|
-
-
|
|
208
|
-
-
|
|
209
|
-
-
|
|
210
|
-
-
|
|
211
|
-
-
|
|
212
|
-
-
|
|
213
|
-
-
|
|
214
|
-
-
|
|
215
|
-
-
|
|
216
|
-
-
|
|
217
|
-
-
|
|
218
|
-
-
|
|
219
|
-
-
|
|
220
|
-
-
|
|
221
|
-
-
|
|
222
|
-
-
|
|
223
|
-
-
|
|
224
|
-
-
|
|
225
|
-
-
|
|
226
|
-
-
|
|
227
|
-
-
|
|
228
|
-
-
|
|
229
|
-
-
|
|
230
|
-
-
|
|
231
|
-
-
|
|
232
|
-
-
|
|
233
|
-
-
|
|
234
|
-
-
|
|
235
|
-
-
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
-
|
|
239
|
-
-
|
|
240
|
-
-
|
|
241
|
-
-
|
|
242
|
-
-
|
|
243
|
-
-
|
|
244
|
-
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
-
|
|
248
|
-
|
|
249
|
-
- rails_test/rails-3.0.17/public/images/rails.png
|
|
250
|
-
- rails_test/rails-3.0.17/public/index.html
|
|
251
|
-
- rails_test/rails-3.0.17/public/javascripts/application.js
|
|
252
|
-
- rails_test/rails-3.0.17/public/javascripts/controls.js
|
|
253
|
-
- rails_test/rails-3.0.17/public/javascripts/dragdrop.js
|
|
254
|
-
- rails_test/rails-3.0.17/public/javascripts/effects.js
|
|
255
|
-
- rails_test/rails-3.0.17/public/javascripts/prototype.js
|
|
256
|
-
- rails_test/rails-3.0.17/public/javascripts/rails.js
|
|
257
|
-
- rails_test/rails-3.0.17/public/robots.txt
|
|
258
|
-
- rails_test/rails-3.0.17/public/stylesheets/.gitkeep
|
|
259
|
-
- rails_test/rails-3.0.17/script/rails
|
|
260
|
-
- rails_test/rails-3.0.17/spec/controllers/entities_controller_spec.rb
|
|
261
|
-
- rails_test/rails-3.0.17/spec/controllers/platforms_controller_spec.rb
|
|
262
|
-
- rails_test/rails-3.0.17/spec/helpers/entities_helper_spec.rb
|
|
263
|
-
- rails_test/rails-3.0.17/spec/helpers/platforms_helper_spec.rb
|
|
264
|
-
- rails_test/rails-3.0.17/spec/integration/navigation_spec.rb
|
|
265
|
-
- rails_test/rails-3.0.17/spec/integration/paper_trail_manager_spec.rb
|
|
266
|
-
- rails_test/rails-3.0.17/spec/models/entity_spec.rb
|
|
267
|
-
- rails_test/rails-3.0.17/spec/models/platform_spec.rb
|
|
268
|
-
- rails_test/rails-3.0.17/spec/requests/entities_spec.rb
|
|
269
|
-
- rails_test/rails-3.0.17/spec/requests/platforms_spec.rb
|
|
270
|
-
- rails_test/rails-3.0.17/spec/routing/entities_routing_spec.rb
|
|
271
|
-
- rails_test/rails-3.0.17/spec/routing/platforms_routing_spec.rb
|
|
272
|
-
- rails_test/rails-3.0.17/spec/spec_helper.rb
|
|
273
|
-
- rails_test/rails-3.0.17/spec/support/factories.rb
|
|
274
|
-
- rails_test/rails-3.0.17/spec/views/entities/edit.html.erb_spec.rb
|
|
275
|
-
- rails_test/rails-3.0.17/spec/views/entities/index.html.erb_spec.rb
|
|
276
|
-
- rails_test/rails-3.0.17/spec/views/entities/new.html.erb_spec.rb
|
|
277
|
-
- rails_test/rails-3.0.17/spec/views/entities/show.html.erb_spec.rb
|
|
278
|
-
- rails_test/rails-3.0.17/spec/views/platforms/edit.html.erb_spec.rb
|
|
279
|
-
- rails_test/rails-3.0.17/spec/views/platforms/index.html.erb_spec.rb
|
|
280
|
-
- rails_test/rails-3.0.17/spec/views/platforms/new.html.erb_spec.rb
|
|
281
|
-
- rails_test/rails-3.0.17/spec/views/platforms/show.html.erb_spec.rb
|
|
282
|
-
- rails_test/rails-3.0.17/test/performance/browsing_test.rb
|
|
283
|
-
- rails_test/rails-3.0.17/test/test_helper.rb
|
|
284
|
-
- rails_test/rails-3.0.17/vendor/plugins/.gitkeep
|
|
285
|
-
- rails_test/rails-3.1.8/.gitignore
|
|
286
|
-
- rails_test/rails-3.1.8/README
|
|
287
|
-
- rails_test/rails-3.1.8/Rakefile
|
|
288
|
-
- rails_test/rails-3.1.8/app/assets/images/rails.png
|
|
289
|
-
- rails_test/rails-3.1.8/app/assets/javascripts/application.js
|
|
290
|
-
- rails_test/rails-3.1.8/app/assets/stylesheets/application.css
|
|
291
|
-
- rails_test/rails-3.1.8/app/controllers/application_controller.rb
|
|
292
|
-
- rails_test/rails-3.1.8/app/controllers/entities_controller.rb
|
|
293
|
-
- rails_test/rails-3.1.8/app/controllers/platforms_controller.rb
|
|
294
|
-
- rails_test/rails-3.1.8/app/helpers/application_helper.rb
|
|
295
|
-
- rails_test/rails-3.1.8/app/helpers/entities_helper.rb
|
|
296
|
-
- rails_test/rails-3.1.8/app/helpers/platforms_helper.rb
|
|
297
|
-
- rails_test/rails-3.1.8/app/mailers/.gitkeep
|
|
298
|
-
- rails_test/rails-3.1.8/app/models/.gitkeep
|
|
299
|
-
- rails_test/rails-3.1.8/app/models/entity.rb
|
|
300
|
-
- rails_test/rails-3.1.8/app/models/platform.rb
|
|
301
|
-
- rails_test/rails-3.1.8/app/views/application/index.html.erb
|
|
302
|
-
- rails_test/rails-3.1.8/app/views/entities/_form.html.erb
|
|
303
|
-
- rails_test/rails-3.1.8/app/views/entities/edit.html.erb
|
|
304
|
-
- rails_test/rails-3.1.8/app/views/entities/index.html.erb
|
|
305
|
-
- rails_test/rails-3.1.8/app/views/entities/new.html.erb
|
|
306
|
-
- rails_test/rails-3.1.8/app/views/entities/show.html.erb
|
|
307
|
-
- rails_test/rails-3.1.8/app/views/layouts/application.html.erb
|
|
308
|
-
- rails_test/rails-3.1.8/app/views/platforms/_form.html.erb
|
|
309
|
-
- rails_test/rails-3.1.8/app/views/platforms/edit.html.erb
|
|
310
|
-
- rails_test/rails-3.1.8/app/views/platforms/index.html.erb
|
|
311
|
-
- rails_test/rails-3.1.8/app/views/platforms/new.html.erb
|
|
312
|
-
- rails_test/rails-3.1.8/app/views/platforms/show.html.erb
|
|
313
|
-
- rails_test/rails-3.1.8/config.ru
|
|
314
|
-
- rails_test/rails-3.1.8/config/application.rb
|
|
315
|
-
- rails_test/rails-3.1.8/config/boot.rb
|
|
316
|
-
- rails_test/rails-3.1.8/config/database.yml
|
|
317
|
-
- rails_test/rails-3.1.8/config/environment.rb
|
|
318
|
-
- rails_test/rails-3.1.8/config/environments/development.rb
|
|
319
|
-
- rails_test/rails-3.1.8/config/environments/production.rb
|
|
320
|
-
- rails_test/rails-3.1.8/config/environments/test.rb
|
|
321
|
-
- rails_test/rails-3.1.8/config/initializers/backtrace_silencers.rb
|
|
322
|
-
- rails_test/rails-3.1.8/config/initializers/inflections.rb
|
|
323
|
-
- rails_test/rails-3.1.8/config/initializers/mime_types.rb
|
|
324
|
-
- rails_test/rails-3.1.8/config/initializers/secret_token.rb
|
|
325
|
-
- rails_test/rails-3.1.8/config/initializers/session_store.rb
|
|
326
|
-
- rails_test/rails-3.1.8/config/initializers/wrap_parameters.rb
|
|
327
|
-
- rails_test/rails-3.1.8/config/locales/en.yml
|
|
328
|
-
- rails_test/rails-3.1.8/config/routes.rb
|
|
329
|
-
- rails_test/rails-3.1.8/db/migrate/20110228091428_create_entities.rb
|
|
330
|
-
- rails_test/rails-3.1.8/db/migrate/20110228093241_create_platforms.rb
|
|
331
|
-
- rails_test/rails-3.1.8/db/migrate/20110228094444_create_versions.rb
|
|
332
|
-
- rails_test/rails-3.1.8/db/schema.rb
|
|
333
|
-
- rails_test/rails-3.1.8/db/seeds.rb
|
|
334
|
-
- rails_test/rails-3.1.8/doc/README_FOR_APP
|
|
335
|
-
- rails_test/rails-3.1.8/lib/assets/.gitkeep
|
|
336
|
-
- rails_test/rails-3.1.8/lib/tasks/.gitkeep
|
|
337
|
-
- rails_test/rails-3.1.8/log/.gitkeep
|
|
338
|
-
- rails_test/rails-3.1.8/public/404.html
|
|
339
|
-
- rails_test/rails-3.1.8/public/422.html
|
|
340
|
-
- rails_test/rails-3.1.8/public/500.html
|
|
341
|
-
- rails_test/rails-3.1.8/public/favicon.ico
|
|
342
|
-
- rails_test/rails-3.1.8/public/index.html
|
|
343
|
-
- rails_test/rails-3.1.8/public/robots.txt
|
|
344
|
-
- rails_test/rails-3.1.8/script/rails
|
|
345
|
-
- rails_test/rails-3.1.8/spec/controllers/entities_controller_spec.rb
|
|
346
|
-
- rails_test/rails-3.1.8/spec/controllers/platforms_controller_spec.rb
|
|
347
|
-
- rails_test/rails-3.1.8/spec/helpers/entities_helper_spec.rb
|
|
348
|
-
- rails_test/rails-3.1.8/spec/helpers/platforms_helper_spec.rb
|
|
349
|
-
- rails_test/rails-3.1.8/spec/integration/navigation_spec.rb
|
|
350
|
-
- rails_test/rails-3.1.8/spec/integration/paper_trail_manager_spec.rb
|
|
351
|
-
- rails_test/rails-3.1.8/spec/models/entity_spec.rb
|
|
352
|
-
- rails_test/rails-3.1.8/spec/models/platform_spec.rb
|
|
353
|
-
- rails_test/rails-3.1.8/spec/requests/entities_spec.rb
|
|
354
|
-
- rails_test/rails-3.1.8/spec/requests/platforms_spec.rb
|
|
355
|
-
- rails_test/rails-3.1.8/spec/routing/entities_routing_spec.rb
|
|
356
|
-
- rails_test/rails-3.1.8/spec/routing/platforms_routing_spec.rb
|
|
357
|
-
- rails_test/rails-3.1.8/spec/spec_helper.rb
|
|
358
|
-
- rails_test/rails-3.1.8/spec/support/factories.rb
|
|
359
|
-
- rails_test/rails-3.1.8/spec/views/entities/edit.html.erb_spec.rb
|
|
360
|
-
- rails_test/rails-3.1.8/spec/views/entities/index.html.erb_spec.rb
|
|
361
|
-
- rails_test/rails-3.1.8/spec/views/entities/new.html.erb_spec.rb
|
|
362
|
-
- rails_test/rails-3.1.8/spec/views/entities/show.html.erb_spec.rb
|
|
363
|
-
- rails_test/rails-3.1.8/spec/views/platforms/edit.html.erb_spec.rb
|
|
364
|
-
- rails_test/rails-3.1.8/spec/views/platforms/index.html.erb_spec.rb
|
|
365
|
-
- rails_test/rails-3.1.8/spec/views/platforms/new.html.erb_spec.rb
|
|
366
|
-
- rails_test/rails-3.1.8/spec/views/platforms/show.html.erb_spec.rb
|
|
367
|
-
- rails_test/rails-3.1.8/test/fixtures/.gitkeep
|
|
368
|
-
- rails_test/rails-3.1.8/test/functional/.gitkeep
|
|
369
|
-
- rails_test/rails-3.1.8/test/integration/.gitkeep
|
|
370
|
-
- rails_test/rails-3.1.8/test/performance/browsing_test.rb
|
|
371
|
-
- rails_test/rails-3.1.8/test/test_helper.rb
|
|
372
|
-
- rails_test/rails-3.1.8/test/unit/.gitkeep
|
|
373
|
-
- rails_test/rails-3.1.8/vendor/assets/stylesheets/.gitkeep
|
|
374
|
-
- rails_test/rails-3.1.8/vendor/plugins/.gitkeep
|
|
375
|
-
- rails_test/rails-3.2.8/.gitignore
|
|
376
|
-
- rails_test/rails-3.2.8/README.rdoc
|
|
377
|
-
- rails_test/rails-3.2.8/Rakefile
|
|
378
|
-
- rails_test/rails-3.2.8/app/assets/images/rails.png
|
|
379
|
-
- rails_test/rails-3.2.8/app/assets/javascripts/application.js
|
|
380
|
-
- rails_test/rails-3.2.8/app/assets/stylesheets/application.css
|
|
381
|
-
- rails_test/rails-3.2.8/app/controllers/application_controller.rb
|
|
382
|
-
- rails_test/rails-3.2.8/app/controllers/entities_controller.rb
|
|
383
|
-
- rails_test/rails-3.2.8/app/controllers/platforms_controller.rb
|
|
384
|
-
- rails_test/rails-3.2.8/app/helpers/application_helper.rb
|
|
385
|
-
- rails_test/rails-3.2.8/app/helpers/entities_helper.rb
|
|
386
|
-
- rails_test/rails-3.2.8/app/helpers/platforms_helper.rb
|
|
387
|
-
- rails_test/rails-3.2.8/app/mailers/.gitkeep
|
|
388
|
-
- rails_test/rails-3.2.8/app/models/.gitkeep
|
|
389
|
-
- rails_test/rails-3.2.8/app/models/entity.rb
|
|
390
|
-
- rails_test/rails-3.2.8/app/models/platform.rb
|
|
391
|
-
- rails_test/rails-3.2.8/app/views/application/index.html.erb
|
|
392
|
-
- rails_test/rails-3.2.8/app/views/entities/_form.html.erb
|
|
393
|
-
- rails_test/rails-3.2.8/app/views/entities/edit.html.erb
|
|
394
|
-
- rails_test/rails-3.2.8/app/views/entities/index.html.erb
|
|
395
|
-
- rails_test/rails-3.2.8/app/views/entities/new.html.erb
|
|
396
|
-
- rails_test/rails-3.2.8/app/views/entities/show.html.erb
|
|
397
|
-
- rails_test/rails-3.2.8/app/views/layouts/application.html.erb
|
|
398
|
-
- rails_test/rails-3.2.8/app/views/platforms/_form.html.erb
|
|
399
|
-
- rails_test/rails-3.2.8/app/views/platforms/edit.html.erb
|
|
400
|
-
- rails_test/rails-3.2.8/app/views/platforms/index.html.erb
|
|
401
|
-
- rails_test/rails-3.2.8/app/views/platforms/new.html.erb
|
|
402
|
-
- rails_test/rails-3.2.8/app/views/platforms/show.html.erb
|
|
403
|
-
- rails_test/rails-3.2.8/config.ru
|
|
404
|
-
- rails_test/rails-3.2.8/config/application.rb
|
|
405
|
-
- rails_test/rails-3.2.8/config/boot.rb
|
|
406
|
-
- rails_test/rails-3.2.8/config/database.yml
|
|
407
|
-
- rails_test/rails-3.2.8/config/environment.rb
|
|
408
|
-
- rails_test/rails-3.2.8/config/environments/development.rb
|
|
409
|
-
- rails_test/rails-3.2.8/config/environments/production.rb
|
|
410
|
-
- rails_test/rails-3.2.8/config/environments/test.rb
|
|
411
|
-
- rails_test/rails-3.2.8/config/initializers/backtrace_silencers.rb
|
|
412
|
-
- rails_test/rails-3.2.8/config/initializers/inflections.rb
|
|
413
|
-
- rails_test/rails-3.2.8/config/initializers/mime_types.rb
|
|
414
|
-
- rails_test/rails-3.2.8/config/initializers/secret_token.rb
|
|
415
|
-
- rails_test/rails-3.2.8/config/initializers/session_store.rb
|
|
416
|
-
- rails_test/rails-3.2.8/config/initializers/wrap_parameters.rb
|
|
417
|
-
- rails_test/rails-3.2.8/config/locales/en.yml
|
|
418
|
-
- rails_test/rails-3.2.8/config/routes.rb
|
|
419
|
-
- rails_test/rails-3.2.8/db/migrate/20110228091428_create_entities.rb
|
|
420
|
-
- rails_test/rails-3.2.8/db/migrate/20110228093241_create_platforms.rb
|
|
421
|
-
- rails_test/rails-3.2.8/db/migrate/20110228094444_create_versions.rb
|
|
422
|
-
- rails_test/rails-3.2.8/db/schema.rb
|
|
423
|
-
- rails_test/rails-3.2.8/db/seeds.rb
|
|
424
|
-
- rails_test/rails-3.2.8/doc/README_FOR_APP
|
|
425
|
-
- rails_test/rails-3.2.8/lib/assets/.gitkeep
|
|
426
|
-
- rails_test/rails-3.2.8/lib/tasks/.gitkeep
|
|
427
|
-
- rails_test/rails-3.2.8/log/.gitkeep
|
|
428
|
-
- rails_test/rails-3.2.8/public/404.html
|
|
429
|
-
- rails_test/rails-3.2.8/public/422.html
|
|
430
|
-
- rails_test/rails-3.2.8/public/500.html
|
|
431
|
-
- rails_test/rails-3.2.8/public/favicon.ico
|
|
432
|
-
- rails_test/rails-3.2.8/public/index.html
|
|
433
|
-
- rails_test/rails-3.2.8/public/robots.txt
|
|
434
|
-
- rails_test/rails-3.2.8/script/rails
|
|
435
|
-
- rails_test/rails-3.2.8/spec/controllers/entities_controller_spec.rb
|
|
436
|
-
- rails_test/rails-3.2.8/spec/controllers/platforms_controller_spec.rb
|
|
437
|
-
- rails_test/rails-3.2.8/spec/helpers/entities_helper_spec.rb
|
|
438
|
-
- rails_test/rails-3.2.8/spec/helpers/platforms_helper_spec.rb
|
|
439
|
-
- rails_test/rails-3.2.8/spec/integration/navigation_spec.rb
|
|
440
|
-
- rails_test/rails-3.2.8/spec/integration/paper_trail_manager_spec.rb
|
|
441
|
-
- rails_test/rails-3.2.8/spec/models/entity_spec.rb
|
|
442
|
-
- rails_test/rails-3.2.8/spec/models/platform_spec.rb
|
|
443
|
-
- rails_test/rails-3.2.8/spec/requests/entities_spec.rb
|
|
444
|
-
- rails_test/rails-3.2.8/spec/requests/platforms_spec.rb
|
|
445
|
-
- rails_test/rails-3.2.8/spec/routing/entities_routing_spec.rb
|
|
446
|
-
- rails_test/rails-3.2.8/spec/routing/platforms_routing_spec.rb
|
|
447
|
-
- rails_test/rails-3.2.8/spec/spec_helper.rb
|
|
448
|
-
- rails_test/rails-3.2.8/spec/support/factories.rb
|
|
449
|
-
- rails_test/rails-3.2.8/spec/views/entities/edit.html.erb_spec.rb
|
|
450
|
-
- rails_test/rails-3.2.8/spec/views/entities/index.html.erb_spec.rb
|
|
451
|
-
- rails_test/rails-3.2.8/spec/views/entities/new.html.erb_spec.rb
|
|
452
|
-
- rails_test/rails-3.2.8/spec/views/entities/show.html.erb_spec.rb
|
|
453
|
-
- rails_test/rails-3.2.8/spec/views/platforms/edit.html.erb_spec.rb
|
|
454
|
-
- rails_test/rails-3.2.8/spec/views/platforms/index.html.erb_spec.rb
|
|
455
|
-
- rails_test/rails-3.2.8/spec/views/platforms/new.html.erb_spec.rb
|
|
456
|
-
- rails_test/rails-3.2.8/spec/views/platforms/show.html.erb_spec.rb
|
|
457
|
-
- rails_test/rails-3.2.8/test/fixtures/.gitkeep
|
|
458
|
-
- rails_test/rails-3.2.8/test/functional/.gitkeep
|
|
459
|
-
- rails_test/rails-3.2.8/test/integration/.gitkeep
|
|
460
|
-
- rails_test/rails-3.2.8/test/performance/browsing_test.rb
|
|
461
|
-
- rails_test/rails-3.2.8/test/test_helper.rb
|
|
462
|
-
- rails_test/rails-3.2.8/test/unit/.gitkeep
|
|
463
|
-
- rails_test/rails-3.2.8/vendor/assets/javascripts/.gitkeep
|
|
464
|
-
- rails_test/rails-3.2.8/vendor/assets/stylesheets/.gitkeep
|
|
465
|
-
- rails_test/rails-3.2.8/vendor/plugins/.gitkeep
|
|
466
|
-
homepage: http://github.com/igal/paper_trail_manager
|
|
467
|
-
licenses: []
|
|
468
|
-
|
|
200
|
+
- spec/controllers/entities_controller_spec.rb
|
|
201
|
+
- spec/controllers/platforms_controller_spec.rb
|
|
202
|
+
- spec/dummy/.gitignore
|
|
203
|
+
- spec/dummy/Gemfile
|
|
204
|
+
- spec/dummy/README.rdoc
|
|
205
|
+
- spec/dummy/Rakefile
|
|
206
|
+
- spec/dummy/app/assets/images/rails.png
|
|
207
|
+
- spec/dummy/app/assets/javascripts/application.js
|
|
208
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
|
209
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
210
|
+
- spec/dummy/app/controllers/entities_controller.rb
|
|
211
|
+
- spec/dummy/app/controllers/platforms_controller.rb
|
|
212
|
+
- spec/dummy/app/helpers/application_helper.rb
|
|
213
|
+
- spec/dummy/app/helpers/entities_helper.rb
|
|
214
|
+
- spec/dummy/app/helpers/platforms_helper.rb
|
|
215
|
+
- spec/dummy/app/mailers/.gitkeep
|
|
216
|
+
- spec/dummy/app/models/.gitkeep
|
|
217
|
+
- spec/dummy/app/models/entity.rb
|
|
218
|
+
- spec/dummy/app/models/platform.rb
|
|
219
|
+
- spec/dummy/app/views/application/index.html.erb
|
|
220
|
+
- spec/dummy/app/views/entities/_form.html.erb
|
|
221
|
+
- spec/dummy/app/views/entities/edit.html.erb
|
|
222
|
+
- spec/dummy/app/views/entities/index.html.erb
|
|
223
|
+
- spec/dummy/app/views/entities/new.html.erb
|
|
224
|
+
- spec/dummy/app/views/entities/show.html.erb
|
|
225
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
226
|
+
- spec/dummy/app/views/platforms/_form.html.erb
|
|
227
|
+
- spec/dummy/app/views/platforms/edit.html.erb
|
|
228
|
+
- spec/dummy/app/views/platforms/index.html.erb
|
|
229
|
+
- spec/dummy/app/views/platforms/new.html.erb
|
|
230
|
+
- spec/dummy/app/views/platforms/show.html.erb
|
|
231
|
+
- spec/dummy/config.ru
|
|
232
|
+
- spec/dummy/config/application.rb
|
|
233
|
+
- spec/dummy/config/boot.rb
|
|
234
|
+
- spec/dummy/config/database.yml
|
|
235
|
+
- spec/dummy/config/environment.rb
|
|
236
|
+
- spec/dummy/config/environments/development.rb
|
|
237
|
+
- spec/dummy/config/environments/production.rb
|
|
238
|
+
- spec/dummy/config/environments/test.rb
|
|
239
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
240
|
+
- spec/dummy/config/initializers/inflections.rb
|
|
241
|
+
- spec/dummy/config/initializers/mime_types.rb
|
|
242
|
+
- spec/dummy/config/initializers/secret_token.rb
|
|
243
|
+
- spec/dummy/config/initializers/session_store.rb
|
|
244
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
245
|
+
- spec/dummy/config/locales/en.yml
|
|
246
|
+
- spec/dummy/config/routes.rb
|
|
247
|
+
- spec/dummy/db/migrate/20110228091428_create_entities.rb
|
|
248
|
+
- spec/dummy/db/migrate/20110228093241_create_platforms.rb
|
|
249
|
+
- spec/dummy/db/migrate/20110228094444_create_versions.rb
|
|
250
|
+
- spec/dummy/db/schema.rb
|
|
251
|
+
- spec/dummy/db/seeds.rb
|
|
252
|
+
- spec/dummy/doc/README_FOR_APP
|
|
253
|
+
- spec/dummy/lib/assets/.gitkeep
|
|
254
|
+
- spec/dummy/lib/tasks/.gitkeep
|
|
255
|
+
- spec/dummy/log/.gitkeep
|
|
256
|
+
- spec/dummy/public/404.html
|
|
257
|
+
- spec/dummy/public/422.html
|
|
258
|
+
- spec/dummy/public/500.html
|
|
259
|
+
- spec/dummy/public/favicon.ico
|
|
260
|
+
- spec/dummy/public/index.html
|
|
261
|
+
- spec/dummy/public/robots.txt
|
|
262
|
+
- spec/dummy/script/rails
|
|
263
|
+
- spec/dummy/test/fixtures/.gitkeep
|
|
264
|
+
- spec/dummy/test/functional/.gitkeep
|
|
265
|
+
- spec/dummy/test/integration/.gitkeep
|
|
266
|
+
- spec/dummy/test/performance/browsing_test.rb
|
|
267
|
+
- spec/dummy/test/test_helper.rb
|
|
268
|
+
- spec/dummy/test/unit/.gitkeep
|
|
269
|
+
- spec/dummy/vendor/assets/javascripts/.gitkeep
|
|
270
|
+
- spec/dummy/vendor/assets/stylesheets/.gitkeep
|
|
271
|
+
- spec/dummy/vendor/plugins/.gitkeep
|
|
272
|
+
- spec/helpers/entities_helper_spec.rb
|
|
273
|
+
- spec/helpers/platforms_helper_spec.rb
|
|
274
|
+
- spec/integration/navigation_spec.rb
|
|
275
|
+
- spec/integration/paper_trail_manager_spec.rb
|
|
276
|
+
- spec/models/entity_spec.rb
|
|
277
|
+
- spec/models/platform_spec.rb
|
|
278
|
+
- spec/rails_helper.rb
|
|
279
|
+
- spec/requests/entities_spec.rb
|
|
280
|
+
- spec/requests/platforms_spec.rb
|
|
281
|
+
- spec/routing/entities_routing_spec.rb
|
|
282
|
+
- spec/routing/platforms_routing_spec.rb
|
|
283
|
+
- spec/spec_helper.rb
|
|
284
|
+
- spec/support/factories.rb
|
|
285
|
+
- spec/views/entities/edit.html.erb_spec.rb
|
|
286
|
+
- spec/views/entities/index.html.erb_spec.rb
|
|
287
|
+
- spec/views/entities/new.html.erb_spec.rb
|
|
288
|
+
- spec/views/entities/show.html.erb_spec.rb
|
|
289
|
+
- spec/views/platforms/edit.html.erb_spec.rb
|
|
290
|
+
- spec/views/platforms/index.html.erb_spec.rb
|
|
291
|
+
- spec/views/platforms/new.html.erb_spec.rb
|
|
292
|
+
- spec/views/platforms/show.html.erb_spec.rb
|
|
293
|
+
homepage: https://github.com/fusion94/paper_trail_manager
|
|
294
|
+
licenses:
|
|
295
|
+
- MIT
|
|
296
|
+
metadata: {}
|
|
469
297
|
post_install_message:
|
|
470
298
|
rdoc_options: []
|
|
471
|
-
|
|
472
|
-
require_paths:
|
|
299
|
+
require_paths:
|
|
473
300
|
- lib
|
|
474
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
475
|
-
|
|
476
|
-
requirements:
|
|
301
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
302
|
+
requirements:
|
|
477
303
|
- - ">="
|
|
478
|
-
- !ruby/object:Gem::Version
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
version: "0"
|
|
483
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
484
|
-
none: false
|
|
485
|
-
requirements:
|
|
304
|
+
- !ruby/object:Gem::Version
|
|
305
|
+
version: '0'
|
|
306
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
307
|
+
requirements:
|
|
486
308
|
- - ">="
|
|
487
|
-
- !ruby/object:Gem::Version
|
|
488
|
-
|
|
489
|
-
segments:
|
|
490
|
-
- 0
|
|
491
|
-
version: "0"
|
|
309
|
+
- !ruby/object:Gem::Version
|
|
310
|
+
version: '0'
|
|
492
311
|
requirements: []
|
|
493
|
-
|
|
494
312
|
rubyforge_project:
|
|
495
|
-
rubygems_version:
|
|
313
|
+
rubygems_version: 2.2.2
|
|
496
314
|
signing_key:
|
|
497
|
-
specification_version:
|
|
315
|
+
specification_version: 4
|
|
498
316
|
summary: A user interface for `paper_trail` versioning data in Ruby on Rails 3 applications.
|
|
499
|
-
test_files:
|
|
500
|
-
|
|
317
|
+
test_files:
|
|
318
|
+
- spec/controllers/entities_controller_spec.rb
|
|
319
|
+
- spec/controllers/platforms_controller_spec.rb
|
|
320
|
+
- spec/dummy/.gitignore
|
|
321
|
+
- spec/dummy/Gemfile
|
|
322
|
+
- spec/dummy/README.rdoc
|
|
323
|
+
- spec/dummy/Rakefile
|
|
324
|
+
- spec/dummy/app/assets/images/rails.png
|
|
325
|
+
- spec/dummy/app/assets/javascripts/application.js
|
|
326
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
|
327
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
328
|
+
- spec/dummy/app/controllers/entities_controller.rb
|
|
329
|
+
- spec/dummy/app/controllers/platforms_controller.rb
|
|
330
|
+
- spec/dummy/app/helpers/application_helper.rb
|
|
331
|
+
- spec/dummy/app/helpers/entities_helper.rb
|
|
332
|
+
- spec/dummy/app/helpers/platforms_helper.rb
|
|
333
|
+
- spec/dummy/app/mailers/.gitkeep
|
|
334
|
+
- spec/dummy/app/models/.gitkeep
|
|
335
|
+
- spec/dummy/app/models/entity.rb
|
|
336
|
+
- spec/dummy/app/models/platform.rb
|
|
337
|
+
- spec/dummy/app/views/application/index.html.erb
|
|
338
|
+
- spec/dummy/app/views/entities/_form.html.erb
|
|
339
|
+
- spec/dummy/app/views/entities/edit.html.erb
|
|
340
|
+
- spec/dummy/app/views/entities/index.html.erb
|
|
341
|
+
- spec/dummy/app/views/entities/new.html.erb
|
|
342
|
+
- spec/dummy/app/views/entities/show.html.erb
|
|
343
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
344
|
+
- spec/dummy/app/views/platforms/_form.html.erb
|
|
345
|
+
- spec/dummy/app/views/platforms/edit.html.erb
|
|
346
|
+
- spec/dummy/app/views/platforms/index.html.erb
|
|
347
|
+
- spec/dummy/app/views/platforms/new.html.erb
|
|
348
|
+
- spec/dummy/app/views/platforms/show.html.erb
|
|
349
|
+
- spec/dummy/config.ru
|
|
350
|
+
- spec/dummy/config/application.rb
|
|
351
|
+
- spec/dummy/config/boot.rb
|
|
352
|
+
- spec/dummy/config/database.yml
|
|
353
|
+
- spec/dummy/config/environment.rb
|
|
354
|
+
- spec/dummy/config/environments/development.rb
|
|
355
|
+
- spec/dummy/config/environments/production.rb
|
|
356
|
+
- spec/dummy/config/environments/test.rb
|
|
357
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
358
|
+
- spec/dummy/config/initializers/inflections.rb
|
|
359
|
+
- spec/dummy/config/initializers/mime_types.rb
|
|
360
|
+
- spec/dummy/config/initializers/secret_token.rb
|
|
361
|
+
- spec/dummy/config/initializers/session_store.rb
|
|
362
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
363
|
+
- spec/dummy/config/locales/en.yml
|
|
364
|
+
- spec/dummy/config/routes.rb
|
|
365
|
+
- spec/dummy/db/migrate/20110228091428_create_entities.rb
|
|
366
|
+
- spec/dummy/db/migrate/20110228093241_create_platforms.rb
|
|
367
|
+
- spec/dummy/db/migrate/20110228094444_create_versions.rb
|
|
368
|
+
- spec/dummy/db/schema.rb
|
|
369
|
+
- spec/dummy/db/seeds.rb
|
|
370
|
+
- spec/dummy/doc/README_FOR_APP
|
|
371
|
+
- spec/dummy/lib/assets/.gitkeep
|
|
372
|
+
- spec/dummy/lib/tasks/.gitkeep
|
|
373
|
+
- spec/dummy/log/.gitkeep
|
|
374
|
+
- spec/dummy/public/404.html
|
|
375
|
+
- spec/dummy/public/422.html
|
|
376
|
+
- spec/dummy/public/500.html
|
|
377
|
+
- spec/dummy/public/favicon.ico
|
|
378
|
+
- spec/dummy/public/index.html
|
|
379
|
+
- spec/dummy/public/robots.txt
|
|
380
|
+
- spec/dummy/script/rails
|
|
381
|
+
- spec/dummy/test/fixtures/.gitkeep
|
|
382
|
+
- spec/dummy/test/functional/.gitkeep
|
|
383
|
+
- spec/dummy/test/integration/.gitkeep
|
|
384
|
+
- spec/dummy/test/performance/browsing_test.rb
|
|
385
|
+
- spec/dummy/test/test_helper.rb
|
|
386
|
+
- spec/dummy/test/unit/.gitkeep
|
|
387
|
+
- spec/dummy/vendor/assets/javascripts/.gitkeep
|
|
388
|
+
- spec/dummy/vendor/assets/stylesheets/.gitkeep
|
|
389
|
+
- spec/dummy/vendor/plugins/.gitkeep
|
|
390
|
+
- spec/helpers/entities_helper_spec.rb
|
|
391
|
+
- spec/helpers/platforms_helper_spec.rb
|
|
392
|
+
- spec/integration/navigation_spec.rb
|
|
393
|
+
- spec/integration/paper_trail_manager_spec.rb
|
|
394
|
+
- spec/models/entity_spec.rb
|
|
395
|
+
- spec/models/platform_spec.rb
|
|
396
|
+
- spec/rails_helper.rb
|
|
397
|
+
- spec/requests/entities_spec.rb
|
|
398
|
+
- spec/requests/platforms_spec.rb
|
|
399
|
+
- spec/routing/entities_routing_spec.rb
|
|
400
|
+
- spec/routing/platforms_routing_spec.rb
|
|
401
|
+
- spec/spec_helper.rb
|
|
402
|
+
- spec/support/factories.rb
|
|
403
|
+
- spec/views/entities/edit.html.erb_spec.rb
|
|
404
|
+
- spec/views/entities/index.html.erb_spec.rb
|
|
405
|
+
- spec/views/entities/new.html.erb_spec.rb
|
|
406
|
+
- spec/views/entities/show.html.erb_spec.rb
|
|
407
|
+
- spec/views/platforms/edit.html.erb_spec.rb
|
|
408
|
+
- spec/views/platforms/index.html.erb_spec.rb
|
|
409
|
+
- spec/views/platforms/new.html.erb_spec.rb
|
|
410
|
+
- spec/views/platforms/show.html.erb_spec.rb
|