Skip to content

Commit

Permalink
Fix overcommit installation on jruby 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ProGM committed Aug 14, 2016
1 parent c9d1fe1 commit 7aef9af
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,20 @@ if RUBY_VERSION.to_f < 2.2
gem 'railties', '~> 4'
end

gem 'tins', '< 1.7' if RUBY_VERSION.to_f < 2.0

group 'test' do
gem 'coveralls', require: false
gem 'tins', '< 1.7' if RUBY_VERSION.to_f < 2.0
if RUBY_VERSION.to_f < 2.0
gem 'tins', '< 1.7'
gem 'overcommit', '< 0.35.0'
else
gem 'overcommit'
end
gem 'codecov', require: false
gem 'simplecov', require: false
gem 'simplecov-html', require: false
gem 'rspec', '~> 3.4'
gem 'its'
gem 'test-unit'
gem 'overcommit'
gem 'colored'
gem 'dotenv'
gem 'timecop'
Expand Down

0 comments on commit 7aef9af

Please sign in to comment.