Skip to content

Commit c932384

Browse files
dirksds
authored andcommittedJan 19, 2016
Add Ruby 2.3.0 to Travis build matrix
To get things working, also: * Add `rake` development dependency * Bump `childprocess` gem dependency * Fix Gemfile-related integration test on Travis
1 parent edab4eb commit c932384

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed
 

‎.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ rvm:
99
- 2.0
1010
- 2.1
1111
- 2.2
12+
- 2.3.0
1213
- jruby-19mode
1314
- rbx-2
1415

‎overcommit.gemspec

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ Gem::Specification.new do |s|
2626

2727
s.required_ruby_version = '>= 1.9.3'
2828

29-
s.add_dependency 'childprocess', '~> 0.5.6'
29+
s.add_dependency 'childprocess', '~> 0.5.8'
3030
s.add_dependency 'iniparse', '~> 1.4'
3131

32+
s.add_development_dependency 'rake', '~> 10.4'
3233
s.add_development_dependency 'rspec', '~> 3.0'
3334
s.add_development_dependency 'travis', '~> 1.7'
3435
end

‎spec/integration/gemfile_option_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
# We point the overcommit gem back to this repo since we can't assume the gem
88
# has already been installed in a test environment
99
let(:gemfile) { normalize_indent(<<-RUBY) }
10+
source 'https://rubygems.org'
11+
1012
gem 'overcommit', path: '#{repo_root}'
1113
gem 'my_fake_gem', path: '#{fake_gem_path}'
1214
RUBY

0 commit comments

Comments
 (0)
Please sign in to comment.