-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Jekyll gem as a runtime_dependency (#98)
* Add Jekyll as runtime_dependency * Year update: 2019 -> 2020 * Move development_dependencies to Gemfile * Update jekyll-toc description * Move development_dependencies to Gemfile part 2
- Loading branch information
Showing
6 changed files
with
35 additions
and
12 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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
gem 'appraisal' | ||
gem 'minitest-reporters' | ||
gem 'minitest' | ||
gem 'pry' | ||
gem 'rake' | ||
gem 'rubocop' | ||
gem 'simplecov' |
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
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 | ||
|
||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'version' | ||
|
@@ -6,7 +8,7 @@ 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.description = 'Jekyll (Ruby static website generator) plugin which generates a table of contents.' | ||
spec.authors = %w(toshimaru torbjoernk) | ||
spec.email = '[email protected]' | ||
spec.files = `git ls-files -z`.split("\x0") | ||
|
@@ -17,14 +19,6 @@ Gem::Specification.new do |spec| | |
|
||
spec.required_ruby_version = '>= 2.4' | ||
|
||
spec.add_runtime_dependency 'nokogiri', '~> 1.9' | ||
|
||
spec.add_development_dependency 'appraisal' | ||
spec.add_development_dependency 'jekyll', '>= 3.7' | ||
spec.add_development_dependency 'minitest', '~> 5.11' | ||
spec.add_development_dependency 'minitest-reporters' | ||
spec.add_development_dependency 'pry' | ||
spec.add_development_dependency 'rake' | ||
spec.add_development_dependency 'rubocop' | ||
spec.add_development_dependency 'simplecov' | ||
spec.add_dependency 'jekyll', '>= 3.7' | ||
spec.add_dependency 'nokogiri', '~> 1.9' | ||
end |