Skip to content

Commit

Permalink
Lock nokogiri to 1.6.x
Browse files Browse the repository at this point in the history
From nokogiri 1.7.0 ruby <= 2.0.0 are no longer
supported. In order to support those version
we must lock ourselves to 1.6.x
  • Loading branch information
jgrau committed Apr 28, 2017
1 parent f38d4cd commit 4c64d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impressionist.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Gem::Specification.new do |s|
s.require_path = 'lib'
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=

s.add_dependency 'nokogiri', '~> 1.6'
s.add_dependency 'nokogiri', RUBY_VERSION < '2.1.0' ? '~> 1.6.0' : '~> 1'
s.add_development_dependency 'bundler', '~> 1.0'
end

0 comments on commit 4c64d52

Please sign in to comment.