-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require Ruby 2.3+ / Nokogiri 1.8+ (#63)
* Remove Ruby 2.2 on TravisCI * Requires Ruby 2.3 * Add .rubocop.yml (TargetRubyVersion: 2.3) * RuboCop correction * Metrics/LineLength: 80 -> 100 * Change heredoc style * RuboCop Exclude `gemfiles/*` * 🆙 dependency 'nokogiri', '~> 1.8'
- Loading branch information
Showing
11 changed files
with
378 additions
and
361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
AllCops: | ||
TargetRubyVersion: 2.3 | ||
Exclude: | ||
- 'gemfiles/*' | ||
|
||
Metrics/LineLength: | ||
Max: 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
language: ruby | ||
cache: bundler | ||
rvm: | ||
- 2.2 | ||
- 2.3.7 | ||
- 2.4.4 | ||
- 2.5.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
appraise "jekyll-3.8" do | ||
gem "jekyll", "3.8" | ||
# frozen_string_literal: true | ||
|
||
appraise 'jekyll-3.8' do | ||
gem 'jekyll', '3.8' | ||
end | ||
|
||
appraise "jekyll-3.7" do | ||
gem "jekyll", "3.7" | ||
appraise 'jekyll-3.7' do | ||
gem 'jekyll', '3.7' | ||
end | ||
|
||
appraise "jekyll-3.6" do | ||
gem "jekyll", "3.6" | ||
appraise 'jekyll-3.6' do | ||
gem 'jekyll', '3.6' | ||
end | ||
|
||
appraise "jekyll-3.5" do | ||
gem "jekyll", "3.5" | ||
appraise 'jekyll-3.5' do | ||
gem 'jekyll', '3.5' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module JekyllToc | ||
VERSION = '0.9.0.beta1'.freeze | ||
VERSION = '0.9.0.beta2' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.