Skip to content

Commit 5427521

Browse files
committed
test against RSpec 3.0.x, 3.1.x, 3.2.x
1 parent 1fe20ac commit 5427521

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ rvm:
66
- 2.2
77
gemfile:
88
- Gemfile
9+
- gemfiles/rspec-3.0.x.gemfile
10+
- gemfiles/rspec-3.1.x.gemfile
11+
- gemfiles/rspec-3.2.x.gemfile
912
script:
1013
- bundle exec rake
1114
branches:

gemfiles/rspec-3.0.x.gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'http://rubygems.org'
2+
3+
gemspec :path => '..'
4+
5+
gem 'rspec', '~> 3.0.0'
6+
gem 'inch'

gemfiles/rspec-3.1.x.gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'http://rubygems.org'
2+
3+
gemspec :path => '..'
4+
5+
gem 'rspec', '~> 3.1.0'
6+
gem 'inch'

gemfiles/rspec-3.2.x.gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'http://rubygems.org'
2+
3+
gemspec :path => '..'
4+
5+
gem 'rspec', '~> 3.2.0'
6+
gem 'inch'

0 commit comments

Comments
 (0)