File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ Bug fixes
17
17
* Where possible, check against the version of ActiveRecord, rather than
18
18
Rails. It is possible to use some of rspec-rails without all of Rails.
19
19
(Darryl Pogue)
20
+ * Explicitly depends on ` activemodel ` . This allows libraries that do not bring
21
+ in all of ` rails ` to use ` rspec-rails ` . (John Firebaugh)
20
22
21
23
### 2.14.0 / 2013-07-06
22
24
[ full changelog] ( http://github.com/rspec/rspec-rails/compare/v2.14.0.rc1...v2.14.0 )
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ Gem::Specification.new do |s|
22
22
s . require_path = "lib"
23
23
24
24
s . add_runtime_dependency ( %q<activesupport> , [ ">= 3.0" ] )
25
+ s . add_runtime_dependency ( %q<activemodel> , [ ">= 3.0" ] )
25
26
s . add_runtime_dependency ( %q<actionpack> , [ ">= 3.0" ] )
26
27
s . add_runtime_dependency ( %q<railties> , [ ">= 3.0" ] )
27
28
%w[ core expectations mocks ] . each do |name |
You can’t perform that action at this time.
0 commit comments