Sha256: 5a497a227d048fd61ab58bc80eab16aafa9b47d6a88ec40b18ff71852fdfe1d6
Contents?: true
Size: 928 Bytes
Versions: 1
Compression:
Stored size: 928 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'table_of_contents/version' Gem::Specification.new do |spec| spec.name = 'jekyll-toc' spec.version = Jekyll::TableOfContents::VERSION spec.summary = 'Jekyll Table of Contents plugin' spec.description = 'Jekyll (Ruby static website generator) plugin which generates a Table of Contents for the page.' spec.authors = %w(toshimaru torbjoernk) spec.email = 'me@toshimaru.net' 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)/}) spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.5' spec.add_dependency 'jekyll', '>= 3.9' spec.add_dependency 'nokogiri', '~> 1.11' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-toc-0.17.1 | jekyll-toc.gemspec |