File rubygem-rspec-rails.changes of Package rubygem-rspec-rails

-------------------------------------------------------------------
Mon Nov  4 17:26:59 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>

- New upstream release 7.0.1, see bundled Changelog.md

-------------------------------------------------------------------
Fri Jun 21 10:37:54 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>

- New upstream release 6.1.3, see bundled Changelog.md

-------------------------------------------------------------------
Mon Jan 29 14:30:29 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>

- New upstream release 6.1.1, see bundled Changelog.md

-------------------------------------------------------------------
Tue Nov 28 08:16:32 UTC 2023 - Dan Čermák <dan.cermak@posteo.net>

- New upstream release 6.1.0, see bundled Changelog.md

-------------------------------------------------------------------
Tue Nov 14 15:33:43 UTC 2023 - Dan Čermák <dan.cermak@posteo.net>

- New upstream release 6.0.3, see bundled Changelog.md

-------------------------------------------------------------------
Fri Oct 28 05:05:55 UTC 2022 - Stephan Kulow <coolo@suse.com>

updated to version 6.0.1
 see installed Changelog.md


-------------------------------------------------------------------
Thu Apr 28 05:46:40 UTC 2022 - Stephan Kulow <coolo@suse.com>

updated to version 5.1.2
 see installed Changelog.md

  Bug Fixes:
  
  * Fix controller scaffold templates parameter name.  (Taketo Takashima, #2591)
  * Include generator specs in the inferred list of specs. (Jason Karns, #2597)
  

-------------------------------------------------------------------
Fri Mar 11 10:17:37 UTC 2022 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 5.1.1

  Enhancements:

  * Make the API request scaffold template more consistent and compatible with
    Rails 6.1. (Naoto Hamada, #2484)
  * Change the scaffold `rails_helper.rb` template to use `require_relative`.
    (Jon Dufresne, #2528)

-------------------------------------------------------------------
Tue Feb 15 07:41:08 UTC 2022 - Stephan Kulow <coolo@suse.com>

updated to version 5.1.0
 see installed Changelog.md


-------------------------------------------------------------------
Wed Aug 25 06:08:33 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 5.0.2

  [Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.0.1...v5.0.2)

  Bug Fixes:

  * Prevent generated job specs from duplicating `_job` in filenames.
    (Nick Flückiger, #2496)
  * Fix `ActiveRecord::TestFixture#uses_transaction` by using example description
    to replace example name rather than example in our monkey patched
    `run_in_transaction?` method.  (Stan Lo, #2495)
  * Prevent keyword arguments being lost when methods are invoked dynamically
    in controller specs. (Josh Cheek, #2509, #2514)

-------------------------------------------------------------------
Tue Mar 23 05:59:27 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 5.0.1

  [Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.0.0...v5.0.1)

  Bug Fixes:

  * Limit multibyte example descriptions when used in system tests for #method_name
    which ends up as screenshot names etc. (@y-yagi, #2405, #2487)

-------------------------------------------------------------------
Mon Mar 15 04:21:34 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 5.0.0

  [Full Changelog](https://github.com/rspec/rspec-rails/compare/v4.1.1...v5.0.0)

  Enhancements:

  * Support new #file_fixture_path and new fixture test support code. (Jon Rowe, #2398)
  * Support for Rails 6.1. (Benoit Tigeot, Jon Rowe, Phil Pirozhkov, and more #2398)

  Breaking Changes:

  * Drop support for Rails below 5.2.

-------------------------------------------------------------------
Wed Jan 20 07:53:44 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 4.0.2

  * no changelog for this version found

-------------------------------------------------------------------
Wed May 27 11:18:57 UTC 2020 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 4.0.1

  Bug Fixes:

  * Remove warning when calling `driven_by` in system specs. (Aubin Lorieux, #2302)
  * Fix comparison of times for `#at` in job matchers. (Jon Rowe, Markus Doits, #2304)
  * Allow `have_enqueued_mail` to match when a sub class of `ActionMailer::DeliveryJob`
    is set using `<Class>.delivery_job=`. (Atsushi Yoshida #2305)
  * Restore Ruby 2.2.x compatibility. (Jon Rowe, #2332)
  * Add `required_ruby_version` to gem spec. (Marc-André Lafortune, #2319, #2338)

-------------------------------------------------------------------
Mon Apr 27 12:41:19 UTC 2020 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 4.0.0

  [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.1...v4.0.0)

  Enhancements:

  * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071)
  * 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)
  * 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)
  * 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:

  * `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)
  * 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)
  * 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)
  * 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)

  Breaking Changes:

  * Drops support for Rails below 5.0
  * Drops support for Ruby below 2.3

-------------------------------------------------------------------
Mon Jan 27 11:10:25 UTC 2020 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 3.9.0

  # Enhancements

  * Use __dir__ instead of __FILE__ in generated rails_helper.rb where supported.
    (OKURA Masafumi, #2048)
  * Add have_enqueued_mail matcher as a "super" matcher to the ActiveJob matchers
    making it easier to match on ActiveJob delivered emails. (Joel Lubrano, #2047)
  * Add generator for system specs on Rails 5.1 and above. (Andrzej Sliwa, #1933)
  * Add generator for generator specs. (@ConSou, #2085)
  * Add option to generate routes when generating controller specs. (David Revelo, #2134)
  
  # Bug Fixes:

  Make the ActiveJob matchers fail when multiple jobs are queued for negated matches.
  e.g. expect { job; job; }.to_not have_enqueued_job. (Emric Istanful, #2069)

-------------------------------------------------------------------
Sat Mar  2 15:36:14 UTC 2019 - Stephan Kulow <coolo@suse.com>

- updated to version 3.8.2
 see installed Changelog.md

-------------------------------------------------------------------
Mon Oct 29 06:53:27 UTC 2018 - mschnitzer@suse.com

- updated to version 3.8.1

  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.8.0...v3.8.1)

  Bug Fixes:

  * Fix `NoMethodError: undefined method 'strip'` when using a `Pathname` object
    as the fixture file path. (Aaron Kromer, #2026)
  * When generating feature specs, do not duplicate namespace in the path name.
    (Laura Paakkinen, #2034)
  * Prevent `ActiveJob::DeserializationError` from being issued when `ActiveJob`
    matchers de-serialize arguments. (@aymeric-ledorze, #2036)

-------------------------------------------------------------------
Sun Aug  5 19:04:31 UTC 2018 - mschnitzer@suse.com

- updated to version 3.8.0

  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.7.2...v3.8.0)

  Enhancements:

  * Improved message when migrations are pending in the default `rails_helper.rb`
    (Koichi ITO, #1924)
  * `have_http_status` matcher now supports Rails 5.2 style response symbols
    (Douglas Lovell, #1951)
  * Change generated Rails helper to match Rails standards for Rails.root
    (Alessandro Rodi, #1960)
  * At support for asserting enqueued jobs have no wait period attached.
    (Brad Charna, #1977)
  * Cache instances of `ActionView::Template` used in `stub_template` resulting
    in increased performance due to less allocations and setup. (Simon Coffey, #1979)
  * Rails scaffold generator now respects longer namespaces (e.g. api/v1/\<thing\>).
    (Laura Paakkinen, #1958)

  Bug Fixes:

  * Escape quotation characters when producing method names for system spec
    screenshots. (Shane Cavanaugh, #1955)
  * Use relative path for resolving fixtures when `fixture_path` is not set.
    (Laurent Cobos, #1943)
  * Allow custom template resolvers in view specs. (@ahorek, #1941)

-------------------------------------------------------------------
Sun Dec  3 19:34:47 UTC 2017 - coolo@suse.com

- updated to version 3.7.2
 see installed Changelog.md

-------------------------------------------------------------------
Thu Oct 26 10:13:00 UTC 2017 - coolo@suse.com

- updated to version 3.7.1
 see installed Changelog.md

-------------------------------------------------------------------
Mon Aug 28 05:37:14 UTC 2017 - coolo@suse.com

- updated to version 3.6.1
 see installed Changelog.md

  ### 3.6.1 / 2017-07-25
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.6.0...v3.6.1)
  
  Bug Fixes:
  
  * Prevent "template not rendered" log message from erroring in threaded
    environments. (Samuel Cochran, #1831)
  * Correctly generate job name in error message. (Wojciech Wnętrzak, #1814)

-------------------------------------------------------------------
Tue May 23 10:18:04 UTC 2017 - coolo@suse.com

- updated to version 3.6.0
 see installed Changelog.md

-------------------------------------------------------------------
Fri Aug 26 04:41:53 UTC 2016 - coolo@suse.com

- updated to version 3.5.2
 see installed Changelog.md

  ### Development
  [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)

-------------------------------------------------------------------
Fri Jul  8 04:32:47 UTC 2016 - coolo@suse.com

- updated to version 3.5.1
 see installed Changelog.md

  ### 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).

-------------------------------------------------------------------
Sat Jul  2 05:28:57 UTC 2016 - coolo@suse.com

- updated to version 3.5.0
 see installed Changelog.md

  ### 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)

-------------------------------------------------------------------
Tue Feb  9 05:30:59 UTC 2016 - coolo@suse.com

- updated to version 3.4.2
 see installed Changelog.md

  ### 3.4.2 / 2016-02-02
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.1...v3.4.2)
  
  Bug fixes:
  
  * Cache template resolvers during path lookup to prevent performance
    regression from #1535. (Andrew White, #1544)

-------------------------------------------------------------------
Wed Jan 27 05:33:09 UTC 2016 - coolo@suse.com

- updated to version 3.4.1
 see installed Changelog.md

  ### 3.4.1 / 2016-01-25
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.0...v3.4.1)
  
  Bug Fixes:
  
  * Fix no method error when rendering templates with explicit `:file`
    parameters for Rails version `4.2.5.1`. (Andrew White, Sam Phippen, #1535)

-------------------------------------------------------------------
Fri Nov 13 05:39:19 UTC 2015 - coolo@suse.com

- updated to version 3.4.0
 see installed Changelog.md

  ### 3.4.0 / 2015-11-11
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.3.3...v3.4.0)
  
  Enhancements:
  
  * Improved the failure message for `have_rendered` matcher on a redirect
    response. (Alex Egan, #1440)
  * Add configuration option to filter out Rails gems from backtraces.
    (Bradley Schaefer, #1458)
  * Enable resolver cache for view specs for a large speed improvement
    (Chris Zetter, #1452)
  * Add `have_enqueued_job` matcher for checking if a block has queued jobs.
    (Wojciech Wnętrzak, #1464)
  
  Bug Fixes:
  
  * Fix another load order issued which causes an undefined method `fixture_path` error
    when loading rspec-rails after a spec has been created. (Nikki Murray, #1430)
  * Removed incorrect surrounding whitespace in the rspec-rails backtrace
    exclusion pattern for its own `lib` code. (Jam Black, #1439)

-------------------------------------------------------------------
Thu Jul 16 04:32:52 UTC 2015 - coolo@suse.com

- updated to version 3.3.3
 see installed Changelog.md

  ### 3.3.3 / 2015-07-15
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.3.2...v3.3.3)
  
  Bug Fixes:
  
  * Fix issue with generators caused by `Rails.configuration.hidden_namespaces`
    including symbols. (Dan Kohn, #1414)

-------------------------------------------------------------------
Fri Jun 19 04:33:32 UTC 2015 - coolo@suse.com

- updated to version 3.3.2
 see installed Changelog.md

  ### 3.3.2 / 2015-06-18
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.3.1...v3.3.2)
  
  Bug Fixes:
  
  * Fix regression that caused stubbing abstract ActiveRecord model
    classes to trigger internal errors in rails due the the verifying
    double lifecycle wrongly calling `define_attribute_methods` on the
    abstract AR class. (Jon Rowe, #1396)

-------------------------------------------------------------------
Wed Jun 17 04:40:59 UTC 2015 - coolo@suse.com

- updated to version 3.3.1
 see installed Changelog.md

  ### 3.3.1 / 2015-06-14
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.3.0...v3.3.1)
  
  Bug Fixes:
  
  * Fix regression that caused stubbing ActiveRecord model classes to
    trigger internal errors in rails. (Myron Marston, Aaron Kromer, #1395)
  
  ### 3.3.0 / 2015-06-12
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.2.3...v3.3.0)
  
  Enhancements:
  
  * Add support for PATCH to route specs created via scaffold. (Igor Zubkov, #1336)
  * Improve controller and routing spec calls to `routes` by using `yield`
    instead of `call`. (Anton Davydov, #1308)
  * Add support for `ActiveJob` specs as standard `RSpec::Rails::RailsExampleGoup`s
    via both `:type => :job` and inferring type from spec directory `spec/jobs`.
    (Gabe Martin-Dempesy, #1361)
  * Include `RSpec::Rails::FixtureSupport` into example groups using metadata
    `:use_fixtures => true`. (Aaron Kromer, #1372)
  * Include `rspec:request` generator for generating request specs; this is an
    alias of `rspec:integration` (Aaron Kromer, #1378)
  * Update `rails_helper` generator with a default check to abort the spec run
    when the Rails environment is production. (Aaron Kromer, #1383)

-------------------------------------------------------------------
Fri Jun 12 04:34:11 UTC 2015 - coolo@suse.com

- updated to version 3.2.3
 see installed Changelog.md

  ### 3.2.3 / 2015-06-06
  [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.2.2...v3.2.3)
  
  Bug Fixes:
  
  * Fix regression with the railtie resulting in undefined method `preview_path=`
    on Rails 3.x and 4.0 (Aaron Kromer, #1388)

-------------------------------------------------------------------
Thu Jun  4 04:37:45 UTC 2015 - coolo@suse.com

- updated to version 3.2.2
 see installed Changelog.md

  ### 3.2.2 / 2015-06-03
  
  Bug Fixes:
  
  * Fix auto-including of generic `Helper` object for view specs sitting in the
    `app/views` root (David Daniell, #1289)
  * Remove pre-loading of ActionMailer in the Railtie (Aaron Kromer, #1327)
  * Fix undefined method `need_auto_run=` error when using Ruby 2.1 and Rails 3.2
    without the test-unit gem (Orien Madgwick, #1350)
  * Fix load order issued which causes an undefined method `fixture_path` error
    when loading rspec-rails after a spec has been created. (Aaron Kromer, #1372)

-------------------------------------------------------------------
Tue Feb 24 05:30:48 UTC 2015 - coolo@suse.com

- updated to version 3.2.1

-------------------------------------------------------------------
Tue Feb 10 18:26:58 UTC 2015 - coolo@suse.com

- updated to version 3.2.0

-------------------------------------------------------------------
Mon Jan 19 21:23:02 UTC 2015 - dmueller@suse.com

- update to 3.1.0:
  * Fix controller route lookup for Rails 4.2
  [ Changelog for 2.14->3.0.2 omitted, since its huge. see
    http://www.rubydoc.info/gems/rspec-rails/file/Changelog.md ]

-------------------------------------------------------------------
Mon Oct 13 18:41:57 UTC 2014 - coolo@suse.com

- adapt to new rubygem packaging

-------------------------------------------------------------------
Sun May 18 09:04:43 UTC 2014 - coolo@suse.com

- updated to version 2.14.2
 Bug fixes
 
 * Loads ActiveSupport properly to support changes in Rails 4.1. (Andy Lindeman)
 * Anonymous controllers inherit from `ActionController::Base` if `ApplicationController`
   is not present. (Jon Rowe)

-------------------------------------------------------------------
Sun Jan  5 14:39:55 UTC 2014 - coolo@suse.com

- updated to version 2.14.1
 Bug fixes
 
 * Fixes "warning: instance variable @orig\_routes not initialized" raised by
   controller specs when `--warnings` are enabled. (Andy Lindeman)
 * Where possible, check against the version of ActiveRecord, rather than
   Rails. It is possible to use some of rspec-rails without all of Rails.
   (Darryl Pogue)
 * Supports Rails 4.1 and Minitest 5. (Patrick Van Stee, Andy Lindeman)
 * Explicitly depends on `activemodel`. This allows libraries that do not bring
   in all of `rails` to use `rspec-rails`. (John Firebaugh)
 * Use `__send__` rather than `send` to prevent naming collisions (Bradley Schaefer)

-------------------------------------------------------------------
Wed Jul 31 05:45:54 UTC 2013 - coolo@suse.com

- updated to version 2.14.0
 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.14.0.rc1...v2.14.0)
 
 Bug fixes
 
 * Rake tasks do not define methods that might interact with other libraries.
   (Fujimura Daisuke)
 * Reverts fix for out-of-order `let` definitions in controller specs after the
   issue was fixed upstream in rspec-core. (Andy Lindeman)
 * Fixes deprecation warning when using `expect(Model).to have(n).records` with
   Rails 4. (Andy Lindeman)
 
 ### 2.14.0.rc1 / 2013-05-27
 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.13.2...v2.14.0.rc1)
 
 Enhancements
 
 * Prelimiarily support Rails 4.1 by updating adapters to support Minitest 5.0.
   (Andy Lindeman)
 
 Bug fixes
 
 * `rake stats` runs correctly when spec files exist at the top level of the
   spec/ directory. (Benjamin Fleischer)

-------------------------------------------------------------------
Fri May 24 06:31:23 UTC 2013 - coolo@suse.com

- updated to version 2.13.2
 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.13.1...v2.13.2)
 
 Bug fixes
 
 * `let` definitions may override methods defined in modules brought in via
   `config.include` in controller specs. Fixes regression introduced in 2.13.
   (Andy Lindeman, Jon Rowe)
 * Code that checks Rails version numbers is more robust in cases where Rails is
   not fully loaded. (Andy Lindeman)

-------------------------------------------------------------------
Thu May  9 17:41:41 UTC 2013 - coolo@suse.com

- updated to version 2.13.1
 Bug fixes
 
 * View specs are no longer generated if no template engine is specified (Kevin
   Glowacz)
 * `ActionController::Base.allow_forgery_protection` is set to its original
   value after each example. (Mark Dimas)
 * `patch` is supported in routing specs. (Chris Your)
 * Routing assertions are supported in controller specs in Rails 4. (Andy
   Lindeman)
 * Fix spacing in the install generator template (Taiki ONO)

-------------------------------------------------------------------
Sun Mar  3 19:52:26 UTC 2013 - coolo@suse.com

- updated to version 2.13.0
 
 Enhancements
 
 * `be_valid` matcher includes validation error messages. (Tom Scott)
 * Adds cucumber scenario showing how to invoke an anonymous controller's
   non-resourceful actions. (Paulo Luis Franchini Casaretto)
 * Null template handler is used when views are stubbed. (Daniel Schierbeck)
 * The generated `spec_helper.rb` in Rails 4 includes a check for pending
   migrations. (Andy Lindeman)
 * Adds `rake spec:features` task. (itzki)
 * Rake tasks are automatically generated for each spec/ directory.
   (Rudolf Schmidt)
 
 ### 2.12.2 / 2013-01-12
 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.12.1...v2.12.2)
 
 Bug fixes
 
 * Reverts earlier fix where anonymous controllers defined the `_routes` method
   to support testing of redirection and generation of URLs from other contexts.
   The implementation ended up breaking the ability to refer to non-anonymous
   routes in the context of the controller under test.
 * Uses `assert_select` correctly in view specs generated by scaffolding. (Andy
   Lindeman)
 
-------------------------------------------------------------------
Tue Jan  8 20:12:06 UTC 2013 - coolo@suse.com

- updated to version 2.12.1
 Bug fixes
 
 * Operates correctly when ActiveRecord is only partially loaded (e.g., with
   older versions of Mongoid). (Eric Marden)
 * `expect(subject).to have(...).errors_on` operates correctly for
   ActiveResource models where `valid?` does not accept an argument. (Yi Wen)
 * Rails 4 support for routing specs. (Andy Lindeman)
 * Rails 4 support for `ActiveRecord::Relation` and the `=~` operator matcher.
   (Andy Lindeman)
 * Anonymous controllers define `_routes` to support testing of redirection
   and generation of URLs from other contexts. (Andy Lindeman)

-------------------------------------------------------------------
Mon Nov 19 13:25:54 UTC 2012 - coolo@suse.com

- updated to version 2.12.0

-------------------------------------------------------------------
Tue Sep  4 18:50:50 UTC 2012 - coolo@suse.com

- initial package (version 2.11.0)

openSUSE Build Service is sponsored by