json_voorhees 0.2.3 → 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 +4 -4
- data/README.md +13 -14
- data/lib/generators/json_voorhees/app_make_admin/USAGE +8 -0
- data/lib/generators/json_voorhees/app_make_admin/app_make_admin_generator.rb +39 -0
- data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/_footer.html.erb +0 -0
- data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/_header.html.erb +10 -6
- data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/admin_home_no_user +0 -0
- data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/admin_home_with_user +0 -0
- data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/application +0 -0
- data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/application.css.scss +0 -0
- data/lib/generators/json_voorhees/app_make_authorizations/app_make_authorizations_generator.rb +2 -2
- data/lib/generators/json_voorhees/app_make_authorizations/templates/auth_file.rb.erb +2 -2
- data/lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb +5 -5
- data/lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb +1 -1
- data/lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb +9 -9
- data/lib/generators/json_voorhees/app_make_tests/templates/no_auth_request.rb.erb +16 -16
- data/lib/generators/json_voorhees/app_make_tests/templates/request.rb.erb +24 -24
- data/lib/generators/json_voorhees/app_make_user/USAGE +8 -0
- data/lib/generators/json_voorhees/app_make_user/app_make_user_generator.rb +66 -0
- data/lib/generators/json_voorhees/app_make_user/templates/user/include_authorization.rb +4 -0
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/specs/factory_girl.rb +1 -1
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/specs/model_specs.rb +14 -14
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/specs/request_specs.rb +31 -31
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/specs/route_specs.rb +0 -0
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_authorizations.rb +3 -3
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_controller.rb +10 -10
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_model.rb +2 -1
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_routes.rb +0 -0
- data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_serializer.rb +7 -7
- data/lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb +8 -8
- data/lib/generators/json_voorhees/engine_create_model/USAGE +8 -0
- data/lib/generators/json_voorhees/engine_create_model/engine_create_model_generator.rb +36 -0
- data/lib/generators/json_voorhees/engine_create_model/templates/model.rb +8 -0
- data/lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb +1 -1
- data/lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb +7 -7
- data/lib/generators/json_voorhees/engine_scaffold/engine_scaffold_generator.rb +5 -1
- data/lib/generators/json_voorhees/massive_scaffold/massive_scaffold_generator.rb +7 -2
- data/lib/generators/json_voorhees/setup_app/setup_app_generator.rb +69 -129
- data/lib/json_voorhees/version.rb +1 -1
- data/test/fresh_copy/test_app/Gemfile +46 -0
- data/test/fresh_copy/test_app/Gemfile.lock +125 -0
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/README.rdoc +0 -0
- data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/Rakefile +1 -1
- data/test/{test_app → fresh_copy/test_app}/app/assets/javascripts/application.js +0 -0
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/app/assets/stylesheets/application.css +3 -5
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/app/controllers/application_controller.rb +0 -0
- data/test/{test_app → fresh_copy/test_app}/app/helpers/application_helper.rb +0 -0
- data/test/{test_app → fresh_copy/test_app}/app/views/layouts/application.html.erb +1 -6
- data/test/{test_app → fresh_copy/test_app}/bin/bundle +0 -0
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/bin/rails +0 -0
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/bin/rake +0 -0
- data/test/{test_app → fresh_copy/test_app}/config.ru +0 -0
- data/test/{test_app → fresh_copy/test_app}/config/application.rb +0 -4
- data/test/{test_app → fresh_copy/test_app}/config/boot.rb +0 -0
- data/test/{test_app → fresh_copy/test_app}/config/database.yml +8 -8
- data/test/{test_app → fresh_copy/test_app}/config/environment.rb +1 -1
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/config/environments/development.rb +2 -10
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/config/environments/production.rb +5 -7
- data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/config/environments/test.rb +2 -5
- data/test/{test_app → fresh_copy/test_app}/config/initializers/backtrace_silencers.rb +0 -0
- data/test/{test_app → fresh_copy/test_app}/config/initializers/filter_parameter_logging.rb +0 -0
- data/test/{test_app → fresh_copy/test_app}/config/initializers/inflections.rb +0 -0
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/config/initializers/mime_types.rb +1 -0
- data/test/fresh_copy/test_app/config/initializers/secret_token.rb +12 -0
- data/test/fresh_copy/test_app/config/initializers/session_store.rb +3 -0
- data/test/{test_app → fresh_copy/test_app}/config/initializers/wrap_parameters.rb +0 -0
- data/test/{test_app → fresh_copy/test_app}/config/locales/en.yml +0 -0
- data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/config/routes.rb +1 -1
- data/test/{test_app → fresh_copy/test_app}/db/seeds.rb +0 -0
- data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/public/404.html +11 -20
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/public/422.html +11 -20
- data/test/{test_app → fresh_copy/test_app}/public/500.html +10 -19
- data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/public/favicon.ico +0 -0
- data/test/{test_app → fresh_copy/test_app}/public/robots.txt +0 -0
- data/test/fresh_copy/test_app/test/test_helper.rb +15 -0
- data/test/lib/generators/json_voorhees/app_make_admin_generator_test.rb +16 -0
- data/test/lib/generators/json_voorhees/app_make_user_generator_test.rb +16 -0
- data/test/lib/generators/json_voorhees/engine_create_model_generator_test.rb +16 -0
- data/test/lib/generators/json_voorhees/engine_make_model_generator_test.rb +16 -0
- metadata +105 -520
- data/lib/generators/json_voorhees/setup_app/templates/user/include_authorization.rb +0 -3
- data/test/test_app/Gemfile +0 -65
- data/test/test_app/Gemfile.lock +0 -230
- data/test/test_app/README.md +0 -1
- data/test/test_app/Rakefile +0 -6
- data/test/test_app/app/assets/stylesheets/application.css +0 -15
- data/test/test_app/app/controllers/api/v1/api_controller.rb +0 -26
- data/test/test_app/app/controllers/app_index_controller.rb +0 -4
- data/test/test_app/app/controllers/application_controller.rb +0 -10
- data/test/test_app/app/controllers/main_controller.rb +0 -4
- data/test/test_app/app/views/app_index/app.html.erb +0 -0
- data/test/test_app/app/views/layouts/app_index.html.erb +0 -9
- data/test/test_app/app/views/main/admin.html.erb +0 -9
- data/test/test_app/bin/rails +0 -8
- data/test/test_app/bin/rake +0 -8
- data/test/test_app/bin/spring +0 -18
- data/test/test_app/config/environments/development.rb +0 -37
- data/test/test_app/config/environments/production.rb +0 -82
- data/test/test_app/config/environments/test.rb +0 -39
- data/test/test_app/config/initializers/assets.rb +0 -8
- data/test/test_app/config/initializers/cookies_serializer.rb +0 -3
- data/test/test_app/config/initializers/mime_types.rb +0 -4
- data/test/test_app/config/initializers/session_store.rb +0 -3
- data/test/test_app/config/routes.rb +0 -64
- data/test/test_app/config/secrets.yml +0 -22
- data/test/test_app/db/development.sqlite3 +0 -0
- data/test/test_app/db/migrate/20140905145354_create_people_users.people.rb +0 -12
- data/test/test_app/db/migrate/20140905145355_create_arcadex_tokens.arcadex.rb +0 -12
- data/test/test_app/db/migrate/20140905145356_add_index_to_token.arcadex.rb +0 -6
- data/test/test_app/db/schema.rb +0 -16
- data/test/test_app/engines/people/Gemfile +0 -14
- data/test/test_app/engines/people/Gemfile.lock +0 -92
- data/test/test_app/engines/people/MIT-LICENSE +0 -20
- data/test/test_app/engines/people/README.md +0 -1
- data/test/test_app/engines/people/Rakefile +0 -34
- data/test/test_app/engines/people/app/assets/javascripts/people/application.js +0 -13
- data/test/test_app/engines/people/app/assets/javascripts/people/users.js +0 -2
- data/test/test_app/engines/people/app/assets/stylesheets/people/application.css +0 -15
- data/test/test_app/engines/people/app/assets/stylesheets/people/users.css +0 -4
- data/test/test_app/engines/people/app/assets/stylesheets/scaffold.css +0 -56
- data/test/test_app/engines/people/app/controllers/people/api/v1/application_controller.rb +0 -5
- data/test/test_app/engines/people/app/controllers/people/api/v1/users_controller.rb +0 -124
- data/test/test_app/engines/people/app/controllers/people/application_controller.rb +0 -4
- data/test/test_app/engines/people/app/controllers/people/users_controller.rb +0 -62
- data/test/test_app/engines/people/app/helpers/people/application_helper.rb +0 -4
- data/test/test_app/engines/people/app/helpers/people/users_helper.rb +0 -4
- data/test/test_app/engines/people/app/models/people/user.rb +0 -26
- data/test/test_app/engines/people/app/serializers/people/user_serializer.rb +0 -39
- data/test/test_app/engines/people/app/views/layouts/people/default/application.html.erb +0 -14
- data/test/test_app/engines/people/app/views/people/users/_form.html.erb +0 -29
- data/test/test_app/engines/people/app/views/people/users/edit.html.erb +0 -6
- data/test/test_app/engines/people/app/views/people/users/index.html.erb +0 -29
- data/test/test_app/engines/people/app/views/people/users/new.html.erb +0 -5
- data/test/test_app/engines/people/app/views/people/users/show.html.erb +0 -19
- data/test/test_app/engines/people/bin/rails +0 -12
- data/test/test_app/engines/people/config/routes.rb +0 -24
- data/test/test_app/engines/people/db/migrate/20140905145341_create_people_users.rb +0 -11
- data/test/test_app/engines/people/lib/people.rb +0 -4
- data/test/test_app/engines/people/lib/people/engine.rb +0 -5
- data/test/test_app/engines/people/lib/people/version.rb +0 -3
- data/test/test_app/engines/people/lib/tasks/people_tasks.rake +0 -4
- data/test/test_app/engines/people/people.gemspec +0 -31
- data/test/test_app/engines/people/test/controllers/people/users_controller_test.rb +0 -51
- data/test/test_app/engines/people/test/dummy/Rakefile +0 -6
- data/test/test_app/engines/people/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/test_app/engines/people/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/test_app/engines/people/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/test_app/engines/people/test/dummy/bin/bundle +0 -3
- data/test/test_app/engines/people/test/dummy/config.ru +0 -4
- data/test/test_app/engines/people/test/dummy/config/application.rb +0 -23
- data/test/test_app/engines/people/test/dummy/config/boot.rb +0 -5
- data/test/test_app/engines/people/test/dummy/config/database.yml +0 -25
- data/test/test_app/engines/people/test/dummy/config/environment.rb +0 -5
- data/test/test_app/engines/people/test/dummy/config/environments/test.rb +0 -39
- data/test/test_app/engines/people/test/dummy/config/initializers/assets.rb +0 -8
- data/test/test_app/engines/people/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/test_app/engines/people/test/dummy/config/initializers/cookies_serializer.rb +0 -3
- data/test/test_app/engines/people/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/test_app/engines/people/test/dummy/config/initializers/inflections.rb +0 -16
- data/test/test_app/engines/people/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/test_app/engines/people/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/test_app/engines/people/test/dummy/config/locales/en.yml +0 -23
- data/test/test_app/engines/people/test/dummy/config/routes.rb +0 -4
- data/test/test_app/engines/people/test/dummy/config/secrets.yml +0 -22
- data/test/test_app/engines/people/test/dummy/db/development.sqlite3 +0 -0
- data/test/test_app/engines/people/test/dummy/db/schema.rb +0 -24
- data/test/test_app/engines/people/test/dummy/log/development.log +0 -0
- data/test/test_app/engines/people/test/dummy/public/404.html +0 -67
- data/test/test_app/engines/people/test/dummy/public/500.html +0 -66
- data/test/test_app/engines/people/test/fixtures/people/users.yml +0 -11
- data/test/test_app/engines/people/test/helpers/people/users_helper_test.rb +0 -6
- data/test/test_app/engines/people/test/integration/navigation_test.rb +0 -10
- data/test/test_app/engines/people/test/models/people/user_test.rb +0 -9
- data/test/test_app/engines/people/test/people_test.rb +0 -7
- data/test/test_app/engines/people/test/test_helper.rb +0 -15
- data/test/test_app/gems/authorization/Gemfile +0 -14
- data/test/test_app/gems/authorization/Gemfile.lock +0 -92
- data/test/test_app/gems/authorization/MIT-LICENSE +0 -20
- data/test/test_app/gems/authorization/README.rdoc +0 -3
- data/test/test_app/gems/authorization/Rakefile +0 -32
- data/test/test_app/gems/authorization/authorization.gemspec +0 -23
- data/test/test_app/gems/authorization/lib/authorization.rb +0 -3
- data/test/test_app/gems/authorization/lib/authorization/people/user.rb +0 -82
- data/test/test_app/gems/authorization/lib/authorization/version.rb +0 -3
- data/test/test_app/gems/authorization/lib/tasks/authorization_tasks.rake +0 -4
- data/test/test_app/gems/authorization/test/authorization_test.rb +0 -7
- data/test/test_app/gems/authorization/test/dummy/README.rdoc +0 -28
- data/test/test_app/gems/authorization/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/test_app/gems/authorization/test/dummy/app/assets/stylesheets/application.css +0 -15
- data/test/test_app/gems/authorization/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/test_app/gems/authorization/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/test_app/gems/authorization/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/test_app/gems/authorization/test/dummy/bin/bundle +0 -3
- data/test/test_app/gems/authorization/test/dummy/bin/rails +0 -4
- data/test/test_app/gems/authorization/test/dummy/bin/rake +0 -4
- data/test/test_app/gems/authorization/test/dummy/config.ru +0 -4
- data/test/test_app/gems/authorization/test/dummy/config/application.rb +0 -23
- data/test/test_app/gems/authorization/test/dummy/config/boot.rb +0 -5
- data/test/test_app/gems/authorization/test/dummy/config/database.yml +0 -25
- data/test/test_app/gems/authorization/test/dummy/config/environment.rb +0 -5
- data/test/test_app/gems/authorization/test/dummy/config/environments/development.rb +0 -37
- data/test/test_app/gems/authorization/test/dummy/config/environments/production.rb +0 -82
- data/test/test_app/gems/authorization/test/dummy/config/initializers/assets.rb +0 -8
- data/test/test_app/gems/authorization/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/test_app/gems/authorization/test/dummy/config/initializers/cookies_serializer.rb +0 -3
- data/test/test_app/gems/authorization/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/test_app/gems/authorization/test/dummy/config/initializers/inflections.rb +0 -16
- data/test/test_app/gems/authorization/test/dummy/config/initializers/mime_types.rb +0 -4
- data/test/test_app/gems/authorization/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/test_app/gems/authorization/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/test_app/gems/authorization/test/dummy/config/locales/en.yml +0 -23
- data/test/test_app/gems/authorization/test/dummy/config/secrets.yml +0 -22
- data/test/test_app/gems/authorization/test/dummy/public/422.html +0 -67
- data/test/test_app/gems/authorization/test/dummy/public/500.html +0 -66
- data/test/test_app/gems/authorization/test/dummy/public/favicon.ico +0 -0
- data/test/test_app/gems/authorization/test/test_helper.rb +0 -15
- data/test/test_app/log/development.log +0 -1803
- data/test/test_app/log/production.log +0 -97
- data/test/test_app/log/test.log +0 -23337
- data/test/test_app/public/404.html +0 -67
- data/test/test_app/public/422.html +0 -67
- data/test/test_app/public/favicon.ico +0 -0
- data/test/test_app/spec/controllers/app_index_controller_spec.rb +0 -12
- data/test/test_app/spec/engines/people/api/v1/models/user_spec.rb +0 -59
- data/test/test_app/spec/engines/people/api/v1/requests/user_spec.rb +0 -154
- data/test/test_app/spec/engines/people/api/v1/routing/user_spec.rb +0 -77
- data/test/test_app/spec/factories/people_user_factory.rb +0 -14
- data/test/test_app/spec/rails_helper.rb +0 -47
- data/test/test_app/spec/spec_helper.rb +0 -78
- data/test/test_app/spec/support/factory_girl.rb +0 -16
- data/test/test_app/spec/support/request_helpers.rb +0 -7
- data/test/test_app/tmp/cache/assets/development/sprockets/055b16b21481c5603eab51f88bce614e +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/2c8821d40541c62f65d0a77d6d737a59 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/381d73d62d2e34310ff5e02a60e2e6b5 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/6cfd8687a851913292b638daebcf0c3b +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/72539eb249ff535aa9679adf93578a3a +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/7288979cc8fd497d915d19732930197f +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/af6f30b38676f9ac87b6c15260d702d6 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/c1e06c98ebb85a26421cf34d75787365 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/c636869dd0df678775f14b9e86cb147d +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/test_engine/Gemfile +0 -17
- data/test/test_engine/Gemfile.lock +0 -128
- data/test/test_engine/MIT-LICENSE +0 -20
- data/test/test_engine/README.md +0 -1
- data/test/test_engine/Rakefile +0 -34
- data/test/test_engine/app/assets/javascripts/test_engine/application.js +0 -13
- data/test/test_engine/app/assets/stylesheets/test_engine/application.css +0 -15
- data/test/test_engine/app/controllers/test_engine/api/v1/application_controller.rb +0 -5
- data/test/test_engine/app/controllers/test_engine/application_controller.rb +0 -4
- data/test/test_engine/app/helpers/test_engine/application_helper.rb +0 -4
- data/test/test_engine/app/views/layouts/test_engine/default/application.html.erb +0 -14
- data/test/test_engine/bin/rails +0 -12
- data/test/test_engine/config/routes.rb +0 -23
- data/test/test_engine/lib/tasks/test_engine_tasks.rake +0 -4
- data/test/test_engine/lib/test_engine.rb +0 -4
- data/test/test_engine/lib/test_engine/engine.rb +0 -5
- data/test/test_engine/lib/test_engine/version.rb +0 -3
- data/test/test_engine/test/dummy/README.rdoc +0 -28
- data/test/test_engine/test/dummy/Rakefile +0 -6
- data/test/test_engine/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/test_engine/test/dummy/app/assets/stylesheets/application.css +0 -15
- data/test/test_engine/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/test_engine/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/test_engine/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/test_engine/test/dummy/bin/bundle +0 -3
- data/test/test_engine/test/dummy/bin/rails +0 -4
- data/test/test_engine/test/dummy/bin/rake +0 -4
- data/test/test_engine/test/dummy/config.ru +0 -4
- data/test/test_engine/test/dummy/config/application.rb +0 -23
- data/test/test_engine/test/dummy/config/boot.rb +0 -5
- data/test/test_engine/test/dummy/config/database.yml +0 -25
- data/test/test_engine/test/dummy/config/environment.rb +0 -5
- data/test/test_engine/test/dummy/config/environments/development.rb +0 -37
- data/test/test_engine/test/dummy/config/environments/production.rb +0 -82
- data/test/test_engine/test/dummy/config/environments/test.rb +0 -39
- data/test/test_engine/test/dummy/config/initializers/assets.rb +0 -8
- data/test/test_engine/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/test_engine/test/dummy/config/initializers/cookies_serializer.rb +0 -3
- data/test/test_engine/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/test_engine/test/dummy/config/initializers/inflections.rb +0 -16
- data/test/test_engine/test/dummy/config/initializers/mime_types.rb +0 -4
- data/test/test_engine/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/test_engine/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/test_engine/test/dummy/config/locales/en.yml +0 -23
- data/test/test_engine/test/dummy/config/routes.rb +0 -4
- data/test/test_engine/test/dummy/config/secrets.yml +0 -22
- data/test/test_engine/test/dummy/log/development.log +0 -0
- data/test/test_engine/test/dummy/public/404.html +0 -67
- data/test/test_engine/test/dummy/public/422.html +0 -67
- data/test/test_engine/test/dummy/public/500.html +0 -66
- data/test/test_engine/test/dummy/public/favicon.ico +0 -0
- data/test/test_engine/test/integration/navigation_test.rb +0 -10
- data/test/test_engine/test/test_engine_test.rb +0 -7
- data/test/test_engine/test/test_helper.rb +0 -15
- data/test/test_engine/test_engine.gemspec +0 -31
@@ -0,0 +1,46 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gem "json_voorhees", :path => "../../../json_voorhees"
|
4
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
5
|
+
gem 'rails', '4.0.4'
|
6
|
+
|
7
|
+
# Use sqlite3 as the database for Active Record
|
8
|
+
gem 'sqlite3'
|
9
|
+
|
10
|
+
# Use SCSS for stylesheets
|
11
|
+
gem 'sass-rails', '~> 4.0.2'
|
12
|
+
|
13
|
+
# Use Uglifier as compressor for JavaScript assets
|
14
|
+
gem 'uglifier', '>= 1.3.0'
|
15
|
+
|
16
|
+
# Use CoffeeScript for .js.coffee assets and views
|
17
|
+
gem 'coffee-rails', '~> 4.0.0'
|
18
|
+
|
19
|
+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
20
|
+
# gem 'therubyracer', platforms: :ruby
|
21
|
+
|
22
|
+
# Use jquery as the JavaScript library
|
23
|
+
gem 'jquery-rails'
|
24
|
+
|
25
|
+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
26
|
+
gem 'turbolinks'
|
27
|
+
|
28
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
29
|
+
gem 'jbuilder', '~> 1.2'
|
30
|
+
|
31
|
+
group :doc do
|
32
|
+
# bundle exec rake doc:rails generates the API under doc/api.
|
33
|
+
gem 'sdoc', require: false
|
34
|
+
end
|
35
|
+
|
36
|
+
# Use ActiveModel has_secure_password
|
37
|
+
# gem 'bcrypt', '~> 3.1.7'
|
38
|
+
|
39
|
+
# Use unicorn as the app server
|
40
|
+
# gem 'unicorn'
|
41
|
+
|
42
|
+
# Use Capistrano for deployment
|
43
|
+
# gem 'capistrano', group: :development
|
44
|
+
|
45
|
+
# Use debugger
|
46
|
+
# gem 'debugger', group: [:development, :test]
|
@@ -0,0 +1,125 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../../json_voorhees
|
3
|
+
specs:
|
4
|
+
json_voorhees (0.2.3)
|
5
|
+
rails (>= 4.0.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actionmailer (4.0.4)
|
11
|
+
actionpack (= 4.0.4)
|
12
|
+
mail (~> 2.5.4)
|
13
|
+
actionpack (4.0.4)
|
14
|
+
activesupport (= 4.0.4)
|
15
|
+
builder (~> 3.1.0)
|
16
|
+
erubis (~> 2.7.0)
|
17
|
+
rack (~> 1.5.2)
|
18
|
+
rack-test (~> 0.6.2)
|
19
|
+
activemodel (4.0.4)
|
20
|
+
activesupport (= 4.0.4)
|
21
|
+
builder (~> 3.1.0)
|
22
|
+
activerecord (4.0.4)
|
23
|
+
activemodel (= 4.0.4)
|
24
|
+
activerecord-deprecated_finders (~> 1.0.2)
|
25
|
+
activesupport (= 4.0.4)
|
26
|
+
arel (~> 4.0.0)
|
27
|
+
activerecord-deprecated_finders (1.0.3)
|
28
|
+
activesupport (4.0.4)
|
29
|
+
i18n (~> 0.6, >= 0.6.9)
|
30
|
+
minitest (~> 4.2)
|
31
|
+
multi_json (~> 1.3)
|
32
|
+
thread_safe (~> 0.1)
|
33
|
+
tzinfo (~> 0.3.37)
|
34
|
+
arel (4.0.2)
|
35
|
+
builder (3.1.4)
|
36
|
+
coffee-rails (4.0.1)
|
37
|
+
coffee-script (>= 2.2.0)
|
38
|
+
railties (>= 4.0.0, < 5.0)
|
39
|
+
coffee-script (2.3.0)
|
40
|
+
coffee-script-source
|
41
|
+
execjs
|
42
|
+
coffee-script-source (1.8.0)
|
43
|
+
erubis (2.7.0)
|
44
|
+
execjs (2.2.1)
|
45
|
+
hike (1.2.3)
|
46
|
+
i18n (0.6.11)
|
47
|
+
jbuilder (1.5.3)
|
48
|
+
activesupport (>= 3.0.0)
|
49
|
+
multi_json (>= 1.2.0)
|
50
|
+
jquery-rails (3.1.2)
|
51
|
+
railties (>= 3.0, < 5.0)
|
52
|
+
thor (>= 0.14, < 2.0)
|
53
|
+
json (1.8.1)
|
54
|
+
mail (2.5.4)
|
55
|
+
mime-types (~> 1.16)
|
56
|
+
treetop (~> 1.4.8)
|
57
|
+
mime-types (1.25.1)
|
58
|
+
minitest (4.7.5)
|
59
|
+
multi_json (1.10.1)
|
60
|
+
polyglot (0.3.5)
|
61
|
+
rack (1.5.2)
|
62
|
+
rack-test (0.6.2)
|
63
|
+
rack (>= 1.0)
|
64
|
+
rails (4.0.4)
|
65
|
+
actionmailer (= 4.0.4)
|
66
|
+
actionpack (= 4.0.4)
|
67
|
+
activerecord (= 4.0.4)
|
68
|
+
activesupport (= 4.0.4)
|
69
|
+
bundler (>= 1.3.0, < 2.0)
|
70
|
+
railties (= 4.0.4)
|
71
|
+
sprockets-rails (~> 2.0.0)
|
72
|
+
railties (4.0.4)
|
73
|
+
actionpack (= 4.0.4)
|
74
|
+
activesupport (= 4.0.4)
|
75
|
+
rake (>= 0.8.7)
|
76
|
+
thor (>= 0.18.1, < 2.0)
|
77
|
+
rake (10.3.2)
|
78
|
+
rdoc (4.1.1)
|
79
|
+
json (~> 1.4)
|
80
|
+
sass (3.2.19)
|
81
|
+
sass-rails (4.0.3)
|
82
|
+
railties (>= 4.0.0, < 5.0)
|
83
|
+
sass (~> 3.2.0)
|
84
|
+
sprockets (~> 2.8, <= 2.11.0)
|
85
|
+
sprockets-rails (~> 2.0)
|
86
|
+
sdoc (0.4.1)
|
87
|
+
json (~> 1.7, >= 1.7.7)
|
88
|
+
rdoc (~> 4.0)
|
89
|
+
sprockets (2.11.0)
|
90
|
+
hike (~> 1.2)
|
91
|
+
multi_json (~> 1.0)
|
92
|
+
rack (~> 1.0)
|
93
|
+
tilt (~> 1.1, != 1.3.0)
|
94
|
+
sprockets-rails (2.0.1)
|
95
|
+
actionpack (>= 3.0)
|
96
|
+
activesupport (>= 3.0)
|
97
|
+
sprockets (~> 2.8)
|
98
|
+
sqlite3 (1.3.9)
|
99
|
+
thor (0.19.1)
|
100
|
+
thread_safe (0.3.4)
|
101
|
+
tilt (1.4.1)
|
102
|
+
treetop (1.4.15)
|
103
|
+
polyglot
|
104
|
+
polyglot (>= 0.3.1)
|
105
|
+
turbolinks (2.3.0)
|
106
|
+
coffee-rails
|
107
|
+
tzinfo (0.3.41)
|
108
|
+
uglifier (2.5.3)
|
109
|
+
execjs (>= 0.3.0)
|
110
|
+
json (>= 1.8.0)
|
111
|
+
|
112
|
+
PLATFORMS
|
113
|
+
ruby
|
114
|
+
|
115
|
+
DEPENDENCIES
|
116
|
+
coffee-rails (~> 4.0.0)
|
117
|
+
jbuilder (~> 1.2)
|
118
|
+
jquery-rails
|
119
|
+
json_voorhees!
|
120
|
+
rails (= 4.0.4)
|
121
|
+
sass-rails (~> 4.0.2)
|
122
|
+
sdoc
|
123
|
+
sqlite3
|
124
|
+
turbolinks
|
125
|
+
uglifier (>= 1.3.0)
|
File without changes
|
File without changes
|
@@ -5,11 +5,9 @@
|
|
5
5
|
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
6
|
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
7
|
*
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the
|
9
|
-
* compiled file
|
10
|
-
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
-
* file per style scope.
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
12
10
|
*
|
13
|
-
*= require_tree .
|
14
11
|
*= require_self
|
12
|
+
*= require_tree .
|
15
13
|
*/
|
File without changes
|
File without changes
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html>
|
3
3
|
<head>
|
4
|
-
<title
|
4
|
+
<title>TestApp</title>
|
5
5
|
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
6
6
|
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
7
7
|
<%= csrf_meta_tags %>
|
@@ -10,10 +10,5 @@
|
|
10
10
|
|
11
11
|
<%= yield %>
|
12
12
|
|
13
|
-
<% if !current_page?(main_app.root_url) %>
|
14
|
-
<br><br>
|
15
|
-
<%= link_to 'admin_home', main_app.admin_path %>
|
16
|
-
<% end %>
|
17
|
-
|
18
13
|
</body>
|
19
14
|
</html>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -8,10 +8,6 @@ Bundler.require(*Rails.groups)
|
|
8
8
|
|
9
9
|
module TestApp
|
10
10
|
class Application < Rails::Application
|
11
|
-
|
12
|
-
#So Rails-Api doesn't remove all of the middleware
|
13
|
-
config.api_only = false
|
14
|
-
|
15
11
|
# Settings in config/environments/* take precedence over those specified here.
|
16
12
|
# Application configuration should go into files in config/initializers
|
17
13
|
# -- all .rb files in that directory are automatically loaded.
|
File without changes
|
@@ -3,23 +3,23 @@
|
|
3
3
|
#
|
4
4
|
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
5
|
# gem 'sqlite3'
|
6
|
-
|
7
|
-
default: &default
|
6
|
+
development:
|
8
7
|
adapter: sqlite3
|
8
|
+
database: db/development.sqlite3
|
9
9
|
pool: 5
|
10
10
|
timeout: 5000
|
11
11
|
|
12
|
-
development:
|
13
|
-
<<: *default
|
14
|
-
database: db/development.sqlite3
|
15
|
-
|
16
12
|
# Warning: The database defined as "test" will be erased and
|
17
13
|
# re-generated from your development database when you run "rake".
|
18
14
|
# Do not set this db to the same as development or production.
|
19
15
|
test:
|
20
|
-
|
16
|
+
adapter: sqlite3
|
21
17
|
database: db/test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
22
20
|
|
23
21
|
production:
|
24
|
-
|
22
|
+
adapter: sqlite3
|
25
23
|
database: db/production.sqlite3
|
24
|
+
pool: 5
|
25
|
+
timeout: 5000
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
TestApp::Application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# In the development environment your application's code is reloaded on
|
@@ -19,19 +19,11 @@ Rails.application.configure do
|
|
19
19
|
# Print deprecation notices to the Rails logger.
|
20
20
|
config.active_support.deprecation = :log
|
21
21
|
|
22
|
-
# Raise an error on page load if there are pending migrations
|
22
|
+
# Raise an error on page load if there are pending migrations
|
23
23
|
config.active_record.migration_error = :page_load
|
24
24
|
|
25
25
|
# Debug mode disables concatenation and preprocessing of assets.
|
26
26
|
# This option may cause significant delays in view rendering with a large
|
27
27
|
# number of complex assets.
|
28
28
|
config.assets.debug = true
|
29
|
-
|
30
|
-
# Adds additional error checking when serving assets at runtime.
|
31
|
-
# Checks for improperly declared sprockets dependencies.
|
32
|
-
# Raises helpful error messages.
|
33
|
-
config.assets.raise_runtime_errors = true
|
34
|
-
|
35
|
-
# Raises error for missing translations
|
36
|
-
# config.action_view.raise_on_missing_translations = true
|
37
29
|
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
|
1
|
+
TestApp::Application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# Code is not reloaded between requests.
|
5
5
|
config.cache_classes = true
|
6
6
|
|
7
7
|
# Eager load code on boot. This eager loads most of Rails and
|
8
|
-
# your application in memory, allowing both
|
8
|
+
# your application in memory, allowing both thread web servers
|
9
9
|
# and those relying on copy on write to perform better.
|
10
10
|
# Rake tasks automatically ignore this option for performance.
|
11
11
|
config.eager_load = true
|
@@ -32,7 +32,8 @@ Rails.application.configure do
|
|
32
32
|
# Generate digests for assets URLs.
|
33
33
|
config.assets.digest = true
|
34
34
|
|
35
|
-
#
|
35
|
+
# Version of your assets, change this if you want to expire all your assets.
|
36
|
+
config.assets.version = '1.0'
|
36
37
|
|
37
38
|
# Specifies the header that your server uses for sending files.
|
38
39
|
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
@@ -65,7 +66,7 @@ Rails.application.configure do
|
|
65
66
|
# config.action_mailer.raise_delivery_errors = false
|
66
67
|
|
67
68
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
68
|
-
# the I18n.default_locale when a translation
|
69
|
+
# the I18n.default_locale when a translation can not be found).
|
69
70
|
config.i18n.fallbacks = true
|
70
71
|
|
71
72
|
# Send deprecation notices to registered listeners.
|
@@ -76,7 +77,4 @@ Rails.application.configure do
|
|
76
77
|
|
77
78
|
# Use default logging formatter so that PID and timestamp are not suppressed.
|
78
79
|
config.log_formatter = ::Logger::Formatter.new
|
79
|
-
|
80
|
-
# Do not dump schema after migrations.
|
81
|
-
config.active_record.dump_schema_after_migration = false
|
82
80
|
end
|
data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/config/environments/test.rb
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
TestApp::Application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# The test environment is used exclusively to run your application's
|
@@ -14,7 +14,7 @@ Rails.application.configure do
|
|
14
14
|
|
15
15
|
# Configure static asset server for tests with Cache-Control for performance.
|
16
16
|
config.serve_static_assets = true
|
17
|
-
config.static_cache_control =
|
17
|
+
config.static_cache_control = "public, max-age=3600"
|
18
18
|
|
19
19
|
# Show full error reports and disable caching.
|
20
20
|
config.consider_all_requests_local = true
|
@@ -33,7 +33,4 @@ Rails.application.configure do
|
|
33
33
|
|
34
34
|
# Print deprecation notices to the stderr.
|
35
35
|
config.active_support.deprecation = :stderr
|
36
|
-
|
37
|
-
# Raises error for missing translations
|
38
|
-
# config.action_view.raise_on_missing_translations = true
|
39
36
|
end
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure your secret_key_base is kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
TestApp::Application.config.secret_key_base = '29f232ab8efec1789f4c5ba430c4777d3ca3740e1e3c3f5da22191b3348a837767e0c216252d73f5ff5cf61e47d153be0c8d08cf4b96146c4d818d9d4612c477'
|
File without changes
|
File without changes
|
File without changes
|
@@ -2,23 +2,17 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
-
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
5
|
<style>
|
7
6
|
body {
|
8
7
|
background-color: #EFEFEF;
|
9
8
|
color: #2E2F30;
|
10
9
|
text-align: center;
|
11
10
|
font-family: arial, sans-serif;
|
12
|
-
margin: 0;
|
13
11
|
}
|
14
12
|
|
15
13
|
div.dialog {
|
16
|
-
width:
|
17
|
-
|
18
|
-
margin: 4em auto 0;
|
19
|
-
}
|
20
|
-
|
21
|
-
div.dialog > div {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
22
16
|
border: 1px solid #CCC;
|
23
17
|
border-right-color: #999;
|
24
18
|
border-left-color: #999;
|
@@ -27,8 +21,7 @@
|
|
27
21
|
border-top-left-radius: 9px;
|
28
22
|
border-top-right-radius: 9px;
|
29
23
|
background-color: white;
|
30
|
-
padding: 7px
|
31
|
-
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
24
|
+
padding: 7px 4em 0 4em;
|
32
25
|
}
|
33
26
|
|
34
27
|
h1 {
|
@@ -37,19 +30,19 @@
|
|
37
30
|
line-height: 1.5em;
|
38
31
|
}
|
39
32
|
|
40
|
-
|
41
|
-
|
42
|
-
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
43
37
|
background-color: #F7F7F7;
|
44
38
|
border: 1px solid #CCC;
|
45
39
|
border-right-color: #999;
|
46
|
-
border-left-color: #999;
|
47
40
|
border-bottom-color: #999;
|
48
41
|
border-bottom-left-radius: 4px;
|
49
42
|
border-bottom-right-radius: 4px;
|
50
43
|
border-top-color: #DADADA;
|
51
44
|
color: #666;
|
52
|
-
box-shadow:
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
53
46
|
}
|
54
47
|
</style>
|
55
48
|
</head>
|
@@ -57,11 +50,9 @@
|
|
57
50
|
<body>
|
58
51
|
<!-- This file lives in public/404.html -->
|
59
52
|
<div class="dialog">
|
60
|
-
<
|
61
|
-
|
62
|
-
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
-
</div>
|
64
|
-
<p>If you are the application owner check the logs for more information.</p>
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
65
55
|
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
66
57
|
</body>
|
67
58
|
</html>
|