Skip to content

Commit 9a0d207

Browse files
committed
prep for 2.6.0
1 parent a6cd192 commit 9a0d207

File tree

4 files changed

+11
-23
lines changed

4 files changed

+11
-23
lines changed

features/Changelog.md

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
### 2.6.0.rc6 / 2011-05-06
1+
### 2.6.0 / 2011-05-12
22

3-
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.6.0.rc4...v2.6.0.rc6)
4-
5-
* Bug fixes
6-
* Fix load order issue w/ Capybara (oleg dashevskii)
7-
* Fix monkey patches that broke due to internal changes in rails-3.1.0.beta1
8-
9-
### 2.6.0.rc4 / 2011-05-01
10-
11-
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.6.0.rc2...v2.6.0.rc4)
3+
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.5.0...v2.6.0)
124

135
* Enhancements
6+
* rails 3 shortcuts for routing specs (Joe Fiorini)
7+
* support nested resources in generators (Tim McEwan)
8+
* require 'rspec/rails/mocks' to use `mock_model` without requiring the whole
9+
rails framework
1410
* Update the controller spec generated by the rails scaffold generator:
1511
* Add documentation to the generated spec
1612
* Use `any_instance` to avoid stubbing finders
@@ -19,20 +15,12 @@
1915
* Decorate paths passed to `[append|prepend]_view_paths` with empty templates
2016
unless rendering views. (Mark Turner)
2117

22-
### 2.6.0.rc2 / 2011-04-18
23-
24-
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.5.0...v2.6.0.rc2)
25-
26-
* Enhancments
27-
* rails 3 shortcuts for routing specs (Joe Fiorini)
28-
* support nested resources in generators (Tim McEwan)
29-
* require 'rspec/rails/mocks' to use `mock_model` without requiring the whole
30-
rails framework
31-
3218
* Bug fixes
3319
* fix typo in "rake spec:statsetup" (Curtis Schofield)
3420
* expose named routes in anonymous controller specs (Andy Lindeman)
3521
* error when generating namespaced scaffold resources (Andy Lindeman)
22+
* Fix load order issue w/ Capybara (oleg dashevskii)
23+
* Fix monkey patches that broke due to internal changes in rails-3.1.0.beta1
3624

3725
### 2.5.0 / 2011-02-05
3826

features/Generators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ controllers, etc, RSpec specs are generated instead of Test::Unit tests.
55

66
Note that the generators are there to help you get started, but they are no
77
substitute for writing your own examples, and they are only guaranteed to work
8-
out of the box for the default scenario (ActiveRecord + Webrat).
8+
out of the box for with Rails' defaults (ActiveRecord, no Capybara or Webrat).

features/routing_specs/route_to_matcher.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Feature: route_to matcher
44
It is most valuable when specifying routes other than standard RESTful
55
routes.
66

7-
get("/").should route_to("welcome#index")
7+
get("/").should route_to("welcome#index") # new in 2.6.0
88

99
or
1010

lib/rspec/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module RSpec # :nodoc:
22
module Rails # :nodoc:
33
module Version # :nodoc:
4-
STRING = '2.6.0.rc6'
4+
STRING = '2.6.0'
55
end
66
end
77
end

0 commit comments

Comments
 (0)