Skip to content

Commit

Permalink
Fixed .gemspec for ruby < 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Naiman committed Sep 14, 2016
1 parent 358a3a4 commit 7bf6b3e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rasti-db.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'minitest-colorin', '~> 0.1'
spec.add_development_dependency 'simplecov', '~> 0.12'
spec.add_development_dependency 'tins', '~> 1.6.0'
spec.add_development_dependency 'coveralls', '~> 0.8'
spec.add_development_dependency 'pry-nav', '~> 0.2'

Expand All @@ -34,4 +33,9 @@ Gem::Specification.new do |spec|
else
spec.add_development_dependency 'sqlite3', '~> 1.3'
end

if RUBY_VERSION < '2'
spec.add_development_dependency 'tins', '~> 1.6.0'
spec.add_development_dependency 'json', '~> 1.8'
end
end

0 comments on commit 7bf6b3e

Please sign in to comment.