File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ source "https://rubygems.org"
2
2
3
3
gemspec
4
4
5
- %w[ rspec rspec-core rspec-expectations rspec-mocks ] . each do |lib |
5
+ %w[ rspec rspec-core rspec-expectations rspec-mocks rspec-collection_matchers ] . each do |lib |
6
6
library_path = File . expand_path ( "../../#{ lib } " , __FILE__ )
7
7
if File . exist? ( library_path )
8
8
gem lib , :path => library_path
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ Gem::Specification.new do |s|
32
32
s . add_runtime_dependency "rspec-#{ name } " , "~> #{ RSpec ::Rails ::Version ::STRING . split ( '.' ) [ 0 ..1 ] . concat ( [ '0' ] ) . join ( '.' ) } "
33
33
end
34
34
end
35
+ s . add_runtime_dependency "rspec-collection_matchers"
35
36
36
37
s . add_development_dependency 'rake' , '~> 10.0.0'
37
38
s . add_development_dependency 'cucumber' , '~> 1.3.5'
Original file line number Diff line number Diff line change
1
+ require 'rspec/collection_matchers'
1
2
require 'rails/all'
2
3
3
4
module RSpecRails
You can’t perform that action at this time.
0 commit comments