Skip to content

Commit 2601578

Browse files
committed
Merge pull request #200 from hanachin/test_against_latest_ruby_and_rspec-3.x
Test against latest ruby and rspec 3.x
2 parents 4902d69 + 5427521 commit 2601578

File tree

4 files changed

+23
-1
lines changed

4 files changed

+23
-1
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
language: ruby
22
rvm:
33
- 2.0.0
4-
- 2.1.5
4+
- 2.1
5+
- 2.2
56
gemfile:
67
- Gemfile
8+
- gemfiles/rspec-3.0.x.gemfile
9+
- gemfiles/rspec-3.1.x.gemfile
10+
- gemfiles/rspec-3.2.x.gemfile
711
script:
812
- bundle exec rake
913
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)