forked from toshimaru/jekyll-toc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jekyll-toc.gemspec
24 lines (20 loc) · 891 Bytes
/
jekyll-toc.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'version'
Gem::Specification.new do |spec|
spec.name = 'jekyll-toc'
spec.version = JekyllToc::VERSION
spec.summary = 'Jekyll Table of Contents plugin'
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")
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.required_ruby_version = '>= 2.4'
spec.add_dependency 'jekyll', '>= 3.7'
spec.add_dependency 'nokogiri', '~> 1.9'
end