2013-09-15 12:17:31 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-rspec-rails to 2.14.0.
### 2.14.0 / 2013-07-06
[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)
|
2013-06-16 18:31:05 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-rspec-rails to 2.13.2.
### 2.13.2 / 2013-05-18
[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)
### 2.13.1 / 2013-04-27
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.13.0...v2.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)
|
2013-04-06 05:45:29 by Blue Rats | Files touched by this commit (152) |
Log message:
Fixes:
COMMENT should not be longer than 70 characters.
COMMENT should not begin with 'A'.
COMMENT should not begin with 'An'.
COMMENT should not begin with 'a'.
COMMENT should not end with a period.
COMMENT should start with a capital letter.
pkglint warnings. Some files also got minor formatting, spelling, and style
corrections.
|
2013-03-11 08:50:31 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-rspec-rails to 2.13.0.
### 2.13.0 / 2013-02-23
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.12.2...v2.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)
|
2013-01-14 07:12:41 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-rspec-rails to 2.12.2.
### 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.
### 2.12.1 / 2013-01-07
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.12.0...master)
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)
|
2013-01-12 10:17:48 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-rspec-rails to 2.12.1.
### 2.12.1 / 2013-01-07
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.12.0...master)
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)
|
2012-12-16 17:46:14 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-rspec-rails to 2.12.0.
### 2.12.0 / 2012-11-12
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.11.4...2.12.0)
Enhancements
* Support validation contexts when using `#errors_on` (Woody Peterson)
* Include RequestExampleGroup in groups in spec/api
Bug fixes
* Add `should` and `should_not` to `CollectionProxy` (Rails 3.1+) and
`AssociationProxy` (Rails 3.0). (Myron Marston)
* `controller.controller_path` is set correctly for view specs in Rails 3.1+.
(Andy Lindeman)
* Generated specs support module namespacing (e.g., in a Rails engine).
(Andy Lindeman)
* `render` properly infers the view to be rendered in Rails 3.0 and 3.1
(John Firebaugh)
* AutoTest mappings involving config/ work correctly (Brent J. Nordquist)
* Failures message for `be_new_record` are more useful (Andy Lindeman)
### 2.11.4 / 2012-10-14
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.11.0...v2.11.4)
Capybara-2.0 integration support:
* include RailsExampleGroup in spec/features (necessary when there is no AR)
* include Capybara::DSL and Capybara::RSpecMatchers in spec/features
See \
[https://github.com/jnicklas/capybara/pull/809](https://github.com/jnicklas/capybara/pull/809)
and \
[http://rubydoc.info/gems/rspec-rails/file/Capybara.md](http://rubydoc.info/gems/rspec-rails/file/Capybara.md)
for background.
2.11.1, .2, .3 were yanked due to errant documentation.
|
2012-09-04 16:52:19 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-rspec-rails to 2.11.0.
2.11.0 / 2012-07-07
full changelog
Enhancements
* The generated spec/spec_helper.rb sets config.order = "random" so \
that specs
run in random order by default.
* rename render_template to have_rendered (and alias to render_template for
backward compatibility)
Bug fixes
* "uninitialized constant" errors are avoided when using using gems like
rspec-rails-uncommitted that define Rspec::Rails before rspec-rails loads
(Andy Lindeman)
|
2012-06-02 02:48:42 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-rspec-rails to 2.10.1.
### 2.10.1 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.10.0...v2.10.1)
Bug fixes
* fix regression introduced in 2.10.0 that broke integration with Devise
(https://github.com/rspec/rspec-rails/issues/534)
### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.9.0...v2.10.0)
Bug fixes
* `render_views` called in a spec can now override the config setting. (martinsvalin)
* Fix `render_views` for anonymous controllers on 1.8.7. (hudge, mudge)
* Eliminate use of deprecated `process_view_paths`
* Fix false negatives when using `route_to` matcher with `should_not`
* `controller` is no longer nil in `config.before` hooks
* Change `request.path_parameters` keys to symbols to match real Rails
environment (Nathan Broadbent)
* Silence deprecation warnings in pre-2.9 generated view specs (Jonathan del
Strother)
|
2012-03-20 14:42:34 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-rspec-rails to 2.9.0.
Remove restriction for version of Ruby on Rails.
### 2.9.0 / 2012-03-17
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.8.1...v2.9.0)
Enhancments
* add description method to RouteToMatcher (John Wulff)
* Run "db:test:clone_structure" instead of "db:test:prepare" \
if Active Record's
schema format is ":sql". (Andrey Voronkov)
Bug fixes
* mock_model(XXX).as_null_object.unknown_method returns self again
* Generated view specs use different IDs for each attribute.
|