--- !ruby/object:Gem::Specification name: focused_controller version: !ruby/object:Gem::Version version: 1.2.0 platform: ruby authors: - Jon Leighton autorequire: bindir: bin cert_chain: [] date: 2014-06-20 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: actionpack requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '3.0' - - "<=" - !ruby/object:Gem::Version version: '4.1' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '3.0' - - "<=" - !ruby/object:Gem::Version version: '4.1' - !ruby/object:Gem::Dependency name: minitest requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' - !ruby/object:Gem::Dependency name: capybara requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2.1' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2.1' - !ruby/object:Gem::Dependency name: capybara_minitest_spec requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.0' - !ruby/object:Gem::Dependency name: poltergeist requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.3' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.3' - !ruby/object:Gem::Dependency name: rspec requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2.8' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2.8' - !ruby/object:Gem::Dependency name: rspec-rails requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2.8' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2.8' - !ruby/object:Gem::Dependency name: appraisal requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.0' description: Write Rails controllers with one class per action email: - j@jonathanleighton.com executables: [] extensions: [] extra_rdoc_files: [] files: - ".gitignore" - ".travis.yml" - Appraisals - CHANGELOG.md - Gemfile - LICENSE - README.md - Rakefile - focused_controller.gemspec - gemfiles/rails_3_1.gemfile - gemfiles/rails_3_2.gemfile - gemfiles/rails_4_0.gemfile - gemfiles/rails_4_1.gemfile - lib/focused_controller.rb - lib/focused_controller/action_name.rb - lib/focused_controller/functional_test_helper.rb - lib/focused_controller/mixin.rb - lib/focused_controller/route.rb - lib/focused_controller/route_mapper.rb - lib/focused_controller/rspec_controller_class.rb - lib/focused_controller/rspec_functional_helper.rb - lib/focused_controller/rspec_helper.rb - lib/focused_controller/test_helper.rb - lib/focused_controller/version.rb - test/acceptance/app_test.rb - test/app/.gitignore - test/app/Gemfile - test/app/README.rdoc - test/app/Rakefile - test/app/app/controllers/application_controller.rb - test/app/app/controllers/posts_controller.rb - test/app/app/models/.gitkeep - test/app/app/models/post.rb - test/app/app/views/layouts/application.html.erb - test/app/app/views/posts/_form.html.erb - test/app/app/views/posts/edit.html.erb - test/app/app/views/posts/index.html.erb - test/app/app/views/posts/new.html.erb - test/app/app/views/posts/show.html.erb - test/app/bin/bundle - test/app/bin/rails - test/app/bin/rake - test/app/config.ru - test/app/config/application.rb - test/app/config/boot.rb - test/app/config/environment.rb - test/app/config/environments/development.rb - test/app/config/environments/test.rb - test/app/config/initializers/backtrace_silencers.rb - test/app/config/initializers/inflections.rb - test/app/config/initializers/mime_types.rb - test/app/config/initializers/secret_token.rb - test/app/config/initializers/session_store.rb - test/app/config/locales/en.yml - test/app/config/routes.rb - test/app/db/seeds.rb - test/app/doc/README_FOR_APP - test/app/lib/assets/.gitkeep - test/app/lib/tasks/.gitkeep - test/app/log/.gitkeep - test/app/public/404.html - test/app/public/422.html - test/app/public/500.html - test/app/public/favicon.ico - test/app/public/index.html - test/app/public/javascripts/application.js - test/app/public/robots.txt - test/app/public/stylesheets/application.css - test/app/script/rails - test/app/spec/controllers/posts_controller_spec.rb - test/app/spec/isolated_spec_helper.rb - test/app/spec/spec_helper.rb - test/app/spec/unit/controllers/posts_controller_isolated_spec.rb - test/app/spec/unit/controllers/posts_controller_spec.rb - test/app/test/functional/.gitkeep - test/app/test/functional/posts_controller_test.rb - test/app/test/isolated_test_helper.rb - test/app/test/test_helper.rb - test/app/test/unit/.gitkeep - test/app/test/unit/controllers/posts_controller_isolated_test.rb - test/app/test/unit/controllers/posts_controller_test.rb - test/app/vendor/assets/javascripts/.gitkeep - test/app/vendor/assets/stylesheets/.gitkeep - test/app/vendor/plugins/.gitkeep - test/helper.rb - test/unit/functional_test_helper_test.rb - test/unit/mixin_test.rb - test/unit/route_mapper_test.rb - test/unit/route_test.rb - test/unit/rspec_functional_helper.rb - test/unit/rspec_helper_test.rb - test/unit/test_helper_test.rb homepage: http://github.com/jonleighton/focused_controller licenses: [] metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubyforge_project: focused_controller rubygems_version: 2.2.2 signing_key: specification_version: 4 summary: Write Rails controllers with one class per action test_files: - test/acceptance/app_test.rb - test/app/.gitignore - test/app/Gemfile - test/app/README.rdoc - test/app/Rakefile - test/app/app/controllers/application_controller.rb - test/app/app/controllers/posts_controller.rb - test/app/app/models/.gitkeep - test/app/app/models/post.rb - test/app/app/views/layouts/application.html.erb - test/app/app/views/posts/_form.html.erb - test/app/app/views/posts/edit.html.erb - test/app/app/views/posts/index.html.erb - test/app/app/views/posts/new.html.erb - test/app/app/views/posts/show.html.erb - test/app/bin/bundle - test/app/bin/rails - test/app/bin/rake - test/app/config.ru - test/app/config/application.rb - test/app/config/boot.rb - test/app/config/environment.rb - test/app/config/environments/development.rb - test/app/config/environments/test.rb - test/app/config/initializers/backtrace_silencers.rb - test/app/config/initializers/inflections.rb - test/app/config/initializers/mime_types.rb - test/app/config/initializers/secret_token.rb - test/app/config/initializers/session_store.rb - test/app/config/locales/en.yml - test/app/config/routes.rb - test/app/db/seeds.rb - test/app/doc/README_FOR_APP - test/app/lib/assets/.gitkeep - test/app/lib/tasks/.gitkeep - test/app/log/.gitkeep - test/app/public/404.html - test/app/public/422.html - test/app/public/500.html - test/app/public/favicon.ico - test/app/public/index.html - test/app/public/javascripts/application.js - test/app/public/robots.txt - test/app/public/stylesheets/application.css - test/app/script/rails - test/app/spec/controllers/posts_controller_spec.rb - test/app/spec/isolated_spec_helper.rb - test/app/spec/spec_helper.rb - test/app/spec/unit/controllers/posts_controller_isolated_spec.rb - test/app/spec/unit/controllers/posts_controller_spec.rb - test/app/test/functional/.gitkeep - test/app/test/functional/posts_controller_test.rb - test/app/test/isolated_test_helper.rb - test/app/test/test_helper.rb - test/app/test/unit/.gitkeep - test/app/test/unit/controllers/posts_controller_isolated_test.rb - test/app/test/unit/controllers/posts_controller_test.rb - test/app/vendor/assets/javascripts/.gitkeep - test/app/vendor/assets/stylesheets/.gitkeep - test/app/vendor/plugins/.gitkeep - test/helper.rb - test/unit/functional_test_helper_test.rb - test/unit/mixin_test.rb - test/unit/route_mapper_test.rb - test/unit/route_test.rb - test/unit/rspec_functional_helper.rb - test/unit/rspec_helper_test.rb - test/unit/test_helper_test.rb