Skip to content

Commit 6879b02

Browse files
authored
Merge pull request #108 from bdewater/remove-nokogiri
Change managing Nokogiri dependency
2 parents 42861d5 + a583e9c commit 6879b02

File tree

8 files changed

+17
-39
lines changed

8 files changed

+17
-39
lines changed

.travis.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ rvm:
55
- 1.9.3
66
- 2.0.0
77
- 2.1.10
8-
- 2.2.5
9-
- 2.3.1
8+
- 2.2.7
9+
- 2.3.4
10+
- 2.4.1
1011
- ruby-head
1112
gemfile:
1213
- gemfiles/rails_4.0.gemfile
@@ -18,6 +19,14 @@ gemfile:
1819
matrix:
1920
fast_finish: true
2021
exclude:
22+
- rvm: 2.4.1
23+
gemfile: gemfiles/rails_4.0.gemfile
24+
- rvm: ruby-head
25+
gemfile: gemfiles/rails_4.0.gemfile
26+
- rvm: 2.4.1
27+
gemfile: gemfiles/rails_4.1.gemfile
28+
- rvm: ruby-head
29+
gemfile: gemfiles/rails_4.1.gemfile
2130
- rvm: 1.9.3
2231
gemfile: gemfiles/rails_5.0.gemfile
2332
- rvm: 2.0.0

Appraisals

Lines changed: 0 additions & 20 deletions
This file was deleted.

gemfiles/rails_4.0.gemfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# This file was generated by Appraisal
2-
31
source "https://rubygems.org"
2+
nokogiri_ver = RUBY_VERSION < '2.1' ? '1.6' : '1.7'
43

54
gem "actionpack", "~> 4.0.0"
65
gem "activerecord", "~> 4.0.0"
76
gem "railties", "~> 4.0.0"
8-
gem "nokogiri", "~> 1.6.0"
7+
gem 'nokogiri', "~> #{nokogiri_ver}.0"
98

109
gemspec :path => "../"

gemfiles/rails_4.1.gemfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# This file was generated by Appraisal
2-
31
source "https://rubygems.org"
2+
nokogiri_ver = RUBY_VERSION < '2.1' ? '1.6' : '1.7'
43

54
gem "actionpack", "~> 4.1.0"
65
gem "activerecord", "~> 4.1.0"
76
gem "railties", "~> 4.1.0"
8-
gem "nokogiri", "~> 1.6.0"
7+
gem 'nokogiri', "~> #{nokogiri_ver}.0"
98

109
gemspec :path => "../"

gemfiles/rails_4.2.gemfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# This file was generated by Appraisal
2-
31
source "https://rubygems.org"
2+
nokogiri_ver = RUBY_VERSION < '2.1' ? '1.6' : '1.7'
43

54
gem "actionpack", "~> 4.2.0"
65
gem "activerecord", "~> 4.2.0"
76
gem "railties", "~> 4.2.0"
8-
gem "nokogiri", "~> 1.6.0"
7+
gem 'nokogiri', "~> #{nokogiri_ver}.0"
98

109
gemspec :path => "../"

gemfiles/rails_5.0.gemfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
# This file was generated by Appraisal
2-
31
source "https://rubygems.org"
42

53
gem "actionpack", "~> 5.0.0"
64
gem "activerecord", "~> 5.0.0"
75
gem "railties", "~> 5.0.0"
8-
gem "nokogiri", "~> 1.7.0"
96

107
gemspec :path => "../"

gemfiles/rails_5.1.gemfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
# This file was generated by Appraisal
2-
31
source "https://rubygems.org"
42

53
gem "actionpack", "~> 5.1.0"
64
gem "activerecord", "~> 5.1.0"
75
gem "railties", "~> 5.1.0"
8-
gem "nokogiri", "~> 1.7.0"
96

107
gemspec :path => "../"

gemfiles/rails_edge.gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# This file was generated by Appraisal
2-
31
source "https://rubygems.org"
42

53
git "https://github.com/rails/rails.git", :branch => "master" do

0 commit comments

Comments
 (0)