Sha256: 825e458c3fc334a37e4e6990cdec72747ccb2583b27c31d690b89ebff1ef5a4b

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 KB

Contents

require_relative 'lib/jekyll_outline/version'

Gem::Specification.new do |spec|
  github = 'https://github.com/mslinn/jekyll_outline'

  spec.authors = ['Mike Slinn']
  spec.bindir = 'exe'
  spec.description = <<~END_OF_DESC
    Jekyll tag plugin that creates a clickable table of contents.
  END_OF_DESC
  spec.email = ['mslinn@mslinn.com']
  spec.files = Dir[
    '.rubocop.yml', 'LICENSE.*', 'Rakefile', '{lib,spec}/**/*', '*.gemspec', '*.md',
    'demo/assets/js/jekyll_outline.js'
  ]
  spec.homepage = 'https://www.mslinn.com/jekyll_plugins/jekyll_outline.html'
  spec.license = 'MIT'
  spec.metadata = {
    'allowed_push_host' => 'https://rubygems.org',
    'bug_tracker_uri'   => "#{github}/issues",
    'changelog_uri'     => "#{github}/CHANGELOG.md",
    'homepage_uri'      => spec.homepage,
    'source_code_uri'   => github,
  }
  spec.name = 'jekyll_outline'
  spec.post_install_message = <<~END_MESSAGE

    Thanks for installing #{spec.name}!

  END_MESSAGE
  spec.require_paths = ['lib']
  spec.required_ruby_version = '>= 2.6.0'
  spec.summary = 'Jekyll tag plugin that creates a clickable table of contents.'
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
  spec.version = JekyllOutlineVersion::VERSION

  spec.add_dependency 'jekyll', '>= 3.5.0'
  spec.add_dependency 'jekyll_draft', '>= 2.0.2'
  spec.add_dependency 'jekyll_plugin_support', '>= 1.0.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll_outline-1.2.4 jekyll_outline.gemspec