pkgsrc/devel/ruby-rspec-rails/PLIST

103 lines
5.8 KiB
Text
Raw Normal View History

devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
@comment $NetBSD: PLIST,v 1.21 2020/04/27 06:58:35 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.document
${GEM_LIBDIR}/.yardopts
${GEM_LIBDIR}/Capybara.md
${GEM_LIBDIR}/Changelog.md
Update ruby-rspec-rails to 3.5.2. ### 3.5.2 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.1...v3.5.2) Bug Fixes: * Stop unnecessarily loading `rspec/core` from `rspec/rails` to avoid IRB context warning. (Myron Marston, #1678) * Deserialize arguments within ActiveJob matchers correctly. (Wojciech Wnętrzak, #1684) ### 3.5.1 / 2016-07-08 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0...v3.5.1) Bugfixes: * Only attempt to load `ActionDispatch::IntegrationTest::Behavior` on Rails 5, and above; Prevents possible `TypeError` when an existing `Behaviour` class is defined. (#1660, Betesh). ### 3.5.0 / 2016-07-01 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta4...v3.5.0) **No user facing changes since beta4** ### 3.5.0.beta4 / 2016-06-05 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta3...v3.5.0.beta4) Enhancements: * Add support for block when using `with` on `have_enqueued_job`. (John Schroeder, #1578) * Add support for `file_fixture(...)`. (Wojciech Wnętrzak, #1587) * Add support for `setup` and `teardown` with blocks (Miklós Fazekas, #1598) * Add `enqueue_job ` alias for `have_enqueued_job`, support `once`/`twice`/ `thrice`, add `have_been_enqueued` matcher to support use without blocks. (Sergey Alexandrovich, #1613) Bug fixes: * Prevent asset helpers from taking precendence over route helpers. (Prem Sichanugrist, #1496) * Prevent `NoMethodError` during failed `have_rendered` assertions on weird templates. (Jon Rowe, #1623). ### 3.5.0.beta3 / 2016-04-02 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta2...v3.5.0.beta3) Enhancements: * Add support for Rails 5 Beta 3 (Sam Phippen, Benjamin Quorning, Koen Punt, #1589, #1573) Bug fixes: * Support custom resolvers when preventing views from rendering. (Jon Rowe, Benjamin Quorning, #1580) ### 3.5.0.beta2 / 2016-03-10 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta1...v3.5.0.beta2) Enhancements: * Include `ActionDispatch::IntegrationTest::Behavior` in request spec example groups when on Rails 5, allowing integration test helpers to be used in request specs. (Scott Bronson, #1560) Bug fixes: * Make it possible to use floats in auto generated (scaffold) tests. (Alwahsh, #1550) ### 3.5.0.beta1 / 2016-02-06 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.2...v3.5.0.beta1) Enhancements: * Add a `--singularize` option for the feature spec generator (Felicity McCabe, #1503) * Prevent leaking TestUnit methods in Rails 4+ (Fernando Seror Garcia, #1512) * Add support for Rails 5 (Sam Phippen, #1492) Bug fixes: * Make it possible to write nested specs within helper specs on classes that are internal to helper classes. (Sam Phippen, Peter Swan, #1499). * Warn if a fixture method is called from a `before(:context)` block, instead of crashing with a `undefined method for nil:NilClass`. (Sam Phippen, #1501) * Expose path to view specs (Ryan Clark, Sarah Mei, Sam Phippen, #1402) * Prevent installing Rails 3.2.22.1 on Ruby 1.8.7. (Jon Rowe, #1540) * Raise a clear error when `have_enqueued_job` is used with non-test adapter. (Wojciech Wnętrzak, #1489)
2016-10-09 17:06:30 +02:00
${GEM_LIBDIR}/LICENSE.md
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/lib/generators/rspec.rb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/generators/rspec/channel/channel_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/channel/templates/channel_spec.rb.erb
${GEM_LIBDIR}/lib/generators/rspec/controller/controller_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/controller/templates/controller_spec.rb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/generators/rspec/controller/templates/request_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/controller/templates/routing_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/controller/templates/view_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/feature/feature_generator.rb
Update ruby-rspec-rails to 3.5.2. ### 3.5.2 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.1...v3.5.2) Bug Fixes: * Stop unnecessarily loading `rspec/core` from `rspec/rails` to avoid IRB context warning. (Myron Marston, #1678) * Deserialize arguments within ActiveJob matchers correctly. (Wojciech Wnętrzak, #1684) ### 3.5.1 / 2016-07-08 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0...v3.5.1) Bugfixes: * Only attempt to load `ActionDispatch::IntegrationTest::Behavior` on Rails 5, and above; Prevents possible `TypeError` when an existing `Behaviour` class is defined. (#1660, Betesh). ### 3.5.0 / 2016-07-01 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta4...v3.5.0) **No user facing changes since beta4** ### 3.5.0.beta4 / 2016-06-05 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta3...v3.5.0.beta4) Enhancements: * Add support for block when using `with` on `have_enqueued_job`. (John Schroeder, #1578) * Add support for `file_fixture(...)`. (Wojciech Wnętrzak, #1587) * Add support for `setup` and `teardown` with blocks (Miklós Fazekas, #1598) * Add `enqueue_job ` alias for `have_enqueued_job`, support `once`/`twice`/ `thrice`, add `have_been_enqueued` matcher to support use without blocks. (Sergey Alexandrovich, #1613) Bug fixes: * Prevent asset helpers from taking precendence over route helpers. (Prem Sichanugrist, #1496) * Prevent `NoMethodError` during failed `have_rendered` assertions on weird templates. (Jon Rowe, #1623). ### 3.5.0.beta3 / 2016-04-02 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta2...v3.5.0.beta3) Enhancements: * Add support for Rails 5 Beta 3 (Sam Phippen, Benjamin Quorning, Koen Punt, #1589, #1573) Bug fixes: * Support custom resolvers when preventing views from rendering. (Jon Rowe, Benjamin Quorning, #1580) ### 3.5.0.beta2 / 2016-03-10 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta1...v3.5.0.beta2) Enhancements: * Include `ActionDispatch::IntegrationTest::Behavior` in request spec example groups when on Rails 5, allowing integration test helpers to be used in request specs. (Scott Bronson, #1560) Bug fixes: * Make it possible to use floats in auto generated (scaffold) tests. (Alwahsh, #1550) ### 3.5.0.beta1 / 2016-02-06 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.2...v3.5.0.beta1) Enhancements: * Add a `--singularize` option for the feature spec generator (Felicity McCabe, #1503) * Prevent leaking TestUnit methods in Rails 4+ (Fernando Seror Garcia, #1512) * Add support for Rails 5 (Sam Phippen, #1492) Bug fixes: * Make it possible to write nested specs within helper specs on classes that are internal to helper classes. (Sam Phippen, Peter Swan, #1499). * Warn if a fixture method is called from a `before(:context)` block, instead of crashing with a `undefined method for nil:NilClass`. (Sam Phippen, #1501) * Expose path to view specs (Ryan Clark, Sarah Mei, Sam Phippen, #1402) * Prevent installing Rails 3.2.22.1 on Ruby 1.8.7. (Jon Rowe, #1540) * Raise a clear error when `have_enqueued_job` is used with non-test adapter. (Wojciech Wnętrzak, #1489)
2016-10-09 17:06:30 +02:00
${GEM_LIBDIR}/lib/generators/rspec/feature/templates/feature_singular_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/feature/templates/feature_spec.rb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/generators/rspec/generator/generator_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/generator/templates/generator_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/helper/helper_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/helper/templates/helper_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/install/install_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/install/templates/spec/rails_helper.rb
${GEM_LIBDIR}/lib/generators/rspec/integration/integration_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/integration/templates/request_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/job/job_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/job/templates/job_spec.rb.erb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/generators/rspec/mailbox/mailbox_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/mailbox/templates/mailbox_spec.rb.erb
${GEM_LIBDIR}/lib/generators/rspec/mailer/mailer_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/mailer/templates/fixture
${GEM_LIBDIR}/lib/generators/rspec/mailer/templates/mailer_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/mailer/templates/preview.rb
${GEM_LIBDIR}/lib/generators/rspec/model/model_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/model/templates/fixtures.yml
${GEM_LIBDIR}/lib/generators/rspec/model/templates/model_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/request/request_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/scaffold/scaffold_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/api_controller_spec.rb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/api_request_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/controller_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/edit_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/index_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/new_spec.rb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/request_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/routing_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/scaffold/templates/show_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/system/system_generator.rb
${GEM_LIBDIR}/lib/generators/rspec/system/templates/system_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/view/templates/view_spec.rb
${GEM_LIBDIR}/lib/generators/rspec/view/view_generator.rb
${GEM_LIBDIR}/lib/rspec-rails.rb
${GEM_LIBDIR}/lib/rspec/rails.rb
${GEM_LIBDIR}/lib/rspec/rails/active_record.rb
${GEM_LIBDIR}/lib/rspec/rails/adapters.rb
${GEM_LIBDIR}/lib/rspec/rails/configuration.rb
${GEM_LIBDIR}/lib/rspec/rails/example.rb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/rspec/rails/example/channel_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/controller_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/feature_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/helper_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/job_example_group.rb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/rspec/rails/example/mailbox_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/mailer_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/model_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/rails_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/request_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/routing_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/system_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/example/view_example_group.rb
${GEM_LIBDIR}/lib/rspec/rails/extensions.rb
${GEM_LIBDIR}/lib/rspec/rails/extensions/active_record/proxy.rb
${GEM_LIBDIR}/lib/rspec/rails/feature_check.rb
Update ruby-rspec-rails to 3.5.2. ### 3.5.2 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.1...v3.5.2) Bug Fixes: * Stop unnecessarily loading `rspec/core` from `rspec/rails` to avoid IRB context warning. (Myron Marston, #1678) * Deserialize arguments within ActiveJob matchers correctly. (Wojciech Wnętrzak, #1684) ### 3.5.1 / 2016-07-08 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0...v3.5.1) Bugfixes: * Only attempt to load `ActionDispatch::IntegrationTest::Behavior` on Rails 5, and above; Prevents possible `TypeError` when an existing `Behaviour` class is defined. (#1660, Betesh). ### 3.5.0 / 2016-07-01 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta4...v3.5.0) **No user facing changes since beta4** ### 3.5.0.beta4 / 2016-06-05 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta3...v3.5.0.beta4) Enhancements: * Add support for block when using `with` on `have_enqueued_job`. (John Schroeder, #1578) * Add support for `file_fixture(...)`. (Wojciech Wnętrzak, #1587) * Add support for `setup` and `teardown` with blocks (Miklós Fazekas, #1598) * Add `enqueue_job ` alias for `have_enqueued_job`, support `once`/`twice`/ `thrice`, add `have_been_enqueued` matcher to support use without blocks. (Sergey Alexandrovich, #1613) Bug fixes: * Prevent asset helpers from taking precendence over route helpers. (Prem Sichanugrist, #1496) * Prevent `NoMethodError` during failed `have_rendered` assertions on weird templates. (Jon Rowe, #1623). ### 3.5.0.beta3 / 2016-04-02 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta2...v3.5.0.beta3) Enhancements: * Add support for Rails 5 Beta 3 (Sam Phippen, Benjamin Quorning, Koen Punt, #1589, #1573) Bug fixes: * Support custom resolvers when preventing views from rendering. (Jon Rowe, Benjamin Quorning, #1580) ### 3.5.0.beta2 / 2016-03-10 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta1...v3.5.0.beta2) Enhancements: * Include `ActionDispatch::IntegrationTest::Behavior` in request spec example groups when on Rails 5, allowing integration test helpers to be used in request specs. (Scott Bronson, #1560) Bug fixes: * Make it possible to use floats in auto generated (scaffold) tests. (Alwahsh, #1550) ### 3.5.0.beta1 / 2016-02-06 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.2...v3.5.0.beta1) Enhancements: * Add a `--singularize` option for the feature spec generator (Felicity McCabe, #1503) * Prevent leaking TestUnit methods in Rails 4+ (Fernando Seror Garcia, #1512) * Add support for Rails 5 (Sam Phippen, #1492) Bug fixes: * Make it possible to write nested specs within helper specs on classes that are internal to helper classes. (Sam Phippen, Peter Swan, #1499). * Warn if a fixture method is called from a `before(:context)` block, instead of crashing with a `undefined method for nil:NilClass`. (Sam Phippen, #1501) * Expose path to view specs (Ryan Clark, Sarah Mei, Sam Phippen, #1402) * Prevent installing Rails 3.2.22.1 on Ruby 1.8.7. (Jon Rowe, #1540) * Raise a clear error when `have_enqueued_job` is used with non-test adapter. (Wojciech Wnętrzak, #1489)
2016-10-09 17:06:30 +02:00
${GEM_LIBDIR}/lib/rspec/rails/file_fixture_support.rb
${GEM_LIBDIR}/lib/rspec/rails/fixture_file_upload_support.rb
${GEM_LIBDIR}/lib/rspec/rails/fixture_support.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers.rb
devel/ruby-rspec-rails: update to 4.0.0 Update ruby-rspec-rails to 4.0.0. ### 4.0.0.rc1 / 2020-03-13 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta4...v4.0.0.rc1) Enhancements: * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) ### 4.0.0.beta4 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta3...v4.0.0.beta4) Enhancements: * Add argument matcher support to `have_enqueued_*` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) Bug Fixes: * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) ### 4.0.0.beta3 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta2...v4.0.0.beta3) Enhancements: * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (@alpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) Bug Fixes: * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Add missing require for `have_enqueued_mail` matcher. (Ignatius Reza, #2117) ### 4.0.0.beta2 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.0.0.beta1...v4.0.0.beta2) Bug Fixes: * Fix version dependencies in gemspec. ### 4.0.0.beta1 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.0...v4.0.0.beta1) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3
2020-04-27 08:58:35 +02:00
${GEM_LIBDIR}/lib/rspec/rails/matchers/action_cable.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/action_cable/have_broadcasted_to.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/action_cable/have_streams.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/action_mailbox.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/active_job.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/base_matcher.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/be_a_new.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/be_new_record.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/be_valid.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/have_enqueued_mail.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/have_http_status.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/have_rendered.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/redirect_to.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/relation_match_array.rb
${GEM_LIBDIR}/lib/rspec/rails/matchers/routing_matchers.rb
${GEM_LIBDIR}/lib/rspec/rails/tasks/rspec.rake
${GEM_LIBDIR}/lib/rspec/rails/vendor/capybara.rb
${GEM_LIBDIR}/lib/rspec/rails/version.rb
${GEM_LIBDIR}/lib/rspec/rails/view_assigns.rb
Update ruby-rspec-rails to 3.5.2. ### 3.5.2 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.1...v3.5.2) Bug Fixes: * Stop unnecessarily loading `rspec/core` from `rspec/rails` to avoid IRB context warning. (Myron Marston, #1678) * Deserialize arguments within ActiveJob matchers correctly. (Wojciech Wnętrzak, #1684) ### 3.5.1 / 2016-07-08 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0...v3.5.1) Bugfixes: * Only attempt to load `ActionDispatch::IntegrationTest::Behavior` on Rails 5, and above; Prevents possible `TypeError` when an existing `Behaviour` class is defined. (#1660, Betesh). ### 3.5.0 / 2016-07-01 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta4...v3.5.0) **No user facing changes since beta4** ### 3.5.0.beta4 / 2016-06-05 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta3...v3.5.0.beta4) Enhancements: * Add support for block when using `with` on `have_enqueued_job`. (John Schroeder, #1578) * Add support for `file_fixture(...)`. (Wojciech Wnętrzak, #1587) * Add support for `setup` and `teardown` with blocks (Miklós Fazekas, #1598) * Add `enqueue_job ` alias for `have_enqueued_job`, support `once`/`twice`/ `thrice`, add `have_been_enqueued` matcher to support use without blocks. (Sergey Alexandrovich, #1613) Bug fixes: * Prevent asset helpers from taking precendence over route helpers. (Prem Sichanugrist, #1496) * Prevent `NoMethodError` during failed `have_rendered` assertions on weird templates. (Jon Rowe, #1623). ### 3.5.0.beta3 / 2016-04-02 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta2...v3.5.0.beta3) Enhancements: * Add support for Rails 5 Beta 3 (Sam Phippen, Benjamin Quorning, Koen Punt, #1589, #1573) Bug fixes: * Support custom resolvers when preventing views from rendering. (Jon Rowe, Benjamin Quorning, #1580) ### 3.5.0.beta2 / 2016-03-10 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta1...v3.5.0.beta2) Enhancements: * Include `ActionDispatch::IntegrationTest::Behavior` in request spec example groups when on Rails 5, allowing integration test helpers to be used in request specs. (Scott Bronson, #1560) Bug fixes: * Make it possible to use floats in auto generated (scaffold) tests. (Alwahsh, #1550) ### 3.5.0.beta1 / 2016-02-06 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.2...v3.5.0.beta1) Enhancements: * Add a `--singularize` option for the feature spec generator (Felicity McCabe, #1503) * Prevent leaking TestUnit methods in Rails 4+ (Fernando Seror Garcia, #1512) * Add support for Rails 5 (Sam Phippen, #1492) Bug fixes: * Make it possible to write nested specs within helper specs on classes that are internal to helper classes. (Sam Phippen, Peter Swan, #1499). * Warn if a fixture method is called from a `before(:context)` block, instead of crashing with a `undefined method for nil:NilClass`. (Sam Phippen, #1501) * Expose path to view specs (Ryan Clark, Sarah Mei, Sam Phippen, #1402) * Prevent installing Rails 3.2.22.1 on Ruby 1.8.7. (Jon Rowe, #1540) * Raise a clear error when `have_enqueued_job` is used with non-test adapter. (Wojciech Wnętrzak, #1489)
2016-10-09 17:06:30 +02:00
${GEM_LIBDIR}/lib/rspec/rails/view_path_builder.rb
${GEM_LIBDIR}/lib/rspec/rails/view_rendering.rb
Update ruby-rspec-rails to 3.5.2. ### 3.5.2 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.1...v3.5.2) Bug Fixes: * Stop unnecessarily loading `rspec/core` from `rspec/rails` to avoid IRB context warning. (Myron Marston, #1678) * Deserialize arguments within ActiveJob matchers correctly. (Wojciech Wnętrzak, #1684) ### 3.5.1 / 2016-07-08 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0...v3.5.1) Bugfixes: * Only attempt to load `ActionDispatch::IntegrationTest::Behavior` on Rails 5, and above; Prevents possible `TypeError` when an existing `Behaviour` class is defined. (#1660, Betesh). ### 3.5.0 / 2016-07-01 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta4...v3.5.0) **No user facing changes since beta4** ### 3.5.0.beta4 / 2016-06-05 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta3...v3.5.0.beta4) Enhancements: * Add support for block when using `with` on `have_enqueued_job`. (John Schroeder, #1578) * Add support for `file_fixture(...)`. (Wojciech Wnętrzak, #1587) * Add support for `setup` and `teardown` with blocks (Miklós Fazekas, #1598) * Add `enqueue_job ` alias for `have_enqueued_job`, support `once`/`twice`/ `thrice`, add `have_been_enqueued` matcher to support use without blocks. (Sergey Alexandrovich, #1613) Bug fixes: * Prevent asset helpers from taking precendence over route helpers. (Prem Sichanugrist, #1496) * Prevent `NoMethodError` during failed `have_rendered` assertions on weird templates. (Jon Rowe, #1623). ### 3.5.0.beta3 / 2016-04-02 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta2...v3.5.0.beta3) Enhancements: * Add support for Rails 5 Beta 3 (Sam Phippen, Benjamin Quorning, Koen Punt, #1589, #1573) Bug fixes: * Support custom resolvers when preventing views from rendering. (Jon Rowe, Benjamin Quorning, #1580) ### 3.5.0.beta2 / 2016-03-10 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.5.0.beta1...v3.5.0.beta2) Enhancements: * Include `ActionDispatch::IntegrationTest::Behavior` in request spec example groups when on Rails 5, allowing integration test helpers to be used in request specs. (Scott Bronson, #1560) Bug fixes: * Make it possible to use floats in auto generated (scaffold) tests. (Alwahsh, #1550) ### 3.5.0.beta1 / 2016-02-06 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.2...v3.5.0.beta1) Enhancements: * Add a `--singularize` option for the feature spec generator (Felicity McCabe, #1503) * Prevent leaking TestUnit methods in Rails 4+ (Fernando Seror Garcia, #1512) * Add support for Rails 5 (Sam Phippen, #1492) Bug fixes: * Make it possible to write nested specs within helper specs on classes that are internal to helper classes. (Sam Phippen, Peter Swan, #1499). * Warn if a fixture method is called from a `before(:context)` block, instead of crashing with a `undefined method for nil:NilClass`. (Sam Phippen, #1501) * Expose path to view specs (Ryan Clark, Sarah Mei, Sam Phippen, #1402) * Prevent installing Rails 3.2.22.1 on Ruby 1.8.7. (Jon Rowe, #1540) * Raise a clear error when `have_enqueued_job` is used with non-test adapter. (Wojciech Wnętrzak, #1489)
2016-10-09 17:06:30 +02:00
${GEM_LIBDIR}/lib/rspec/rails/view_spec_methods.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec