Skip to content

Commit

Permalink
Pin nokogiri in affected Gemfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson committed Jan 1, 2017
1 parent fac280d commit d0dee41
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,3 @@ gem "jquery-rails"

# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'

# nokogiri 1.7+ is not compatible with Ruby < 2.1, so pin at older version.
gem "nokogiri", "~> 1.6.8" if RUBY_VERSION =~ /^(1\.9|2\.0)\./
3 changes: 3 additions & 0 deletions gemfiles/4.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ source "http://rubygems.org"
gem "jquery-rails"
gem "rails", "~> 4.0.0"

# nokogiri 1.7+ is not compatible with Ruby < 2.1, so pin at older version.
gem "nokogiri", "~> 1.6.8" if RUBY_VERSION =~ /^(1\.9|2\.0)\./

gemspec :path => "../"
3 changes: 3 additions & 0 deletions gemfiles/4.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ source "http://rubygems.org"
gem "jquery-rails"
gem "rails", "~> 4.1.0"

# nokogiri 1.7+ is not compatible with Ruby < 2.1, so pin at older version.
gem "nokogiri", "~> 1.6.8" if RUBY_VERSION =~ /^(1\.9|2\.0)\./

gemspec :path => "../"
3 changes: 3 additions & 0 deletions gemfiles/4.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ source "http://rubygems.org"
gem "jquery-rails"
gem "rails", "~> 4.2"

# nokogiri 1.7+ is not compatible with Ruby < 2.1, so pin at older version.
gem "nokogiri", "~> 1.6.8" if RUBY_VERSION =~ /^(1\.9|2\.0)\./

gemspec :path => "../"

0 comments on commit d0dee41

Please sign in to comment.