-
-
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.
Merge pull request #22 from toshimaru/test-upgrade-guide
v0.3 Release / Nested Toc Support / Drop jekyll2 Support
- Loading branch information
Showing
10 changed files
with
76 additions
and
38 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
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,7 @@ | ||
appraise "jekyll-3.5" do | ||
gem "jekyll", "3.5.1" | ||
end | ||
|
||
appraise "jekyll-3.4" do | ||
gem "jekyll", "3.4.3" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "jekyll", "3.5.1" | ||
|
||
gemspec :path => "../" |
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,27 +1,32 @@ | ||
lib = File.expand_path("../lib", __FILE__) | ||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require "version" | ||
require 'version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'jekyll-toc' | ||
spec.version = JekyllToc::VERSION | ||
spec.summary = "Jekyll Table of Contents plugin" | ||
spec.description = "A liquid filter plugin for Jekyll which generates a table of contents." | ||
spec.authors = ["Toshimaru", 'torbjoernk'] | ||
spec.summary = 'Jekyll Table of Contents plugin' | ||
spec.description = 'A liquid filter plugin for Jekyll which generates a table of contents.' | ||
spec.authors = %w(toshimaru torbjoernk) | ||
spec.email = '[email protected]' | ||
spec.files = `git ls-files -z`.split("\x0") | ||
spec.homepage = 'https://github.com/toshimaru/jekyll-toc' | ||
spec.license = 'MIT' | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ["lib"] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.required_ruby_version = ">= 2.1.0" | ||
spec.post_install_message = %q(As of jekyll-toc 0.3, nested toc is supported! Please make sure your toc is not broken after update jekyll-toc. | ||
spec.add_runtime_dependency "nokogiri", "~> 1.6" | ||
For more info: https://github.com/toshimaru/jekyll-toc/wiki/0.3-Upgrade-Guide) | ||
|
||
spec.add_development_dependency 'minitest', "~> 5.0" | ||
spec.add_development_dependency "appraisal" | ||
spec.add_development_dependency "codeclimate-test-reporter", "~> 1.0" | ||
spec.add_development_dependency "jekyll", ">= 2.0" | ||
spec.add_development_dependency "rake" | ||
spec.required_ruby_version = '>= 2.1.0' | ||
|
||
spec.add_runtime_dependency 'nokogiri', '~> 1.6' | ||
|
||
spec.add_development_dependency 'appraisal' | ||
spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0' | ||
spec.add_development_dependency 'jekyll', '>= 3.0' | ||
spec.add_development_dependency 'minitest', '~> 5.0' | ||
spec.add_development_dependency 'pry' | ||
spec.add_development_dependency 'rake' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module JekyllToc | ||
VERSION = '0.3.0.pre1' | ||
VERSION = '0.3.0'.freeze | ||
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