File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 22
33* Adding support to Ruby 2.4 and head (James Pinto)
44* Upgrading to CodeClimate 1.0 (James Pinto)
5+ * Nokogiri 1.7 does not accept Ruby 2.0 (James Pinto)
56
67=== 0.5.1 2016-02-29
78
Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ Gem::Specification.new do |spec|
1919 spec . test_files = Dir . glob ( "test/**/*.rb" )
2020 spec . extra_rdoc_files = [ "LICENSE" , "README.rdoc" , "TODO" ]
2121
22+ # This gem will work with 2.0 or greater...
23+ spec . required_ruby_version = '>= 2.0'
24+
25+ # Nokogiri 1.7 does not accept Ruby 2.0
26+ spec . add_development_dependency ( "nokogiri" , "~> 1.6.8" ) if RUBY_VERSION < "2.1"
27+
2228 spec . add_development_dependency ( "rake" )
2329 spec . add_development_dependency ( "minitest" )
2430 spec . add_development_dependency ( "byebug" )
You can’t perform that action at this time.
0 commit comments