Sha256: 7fe4f6015e0b4740c1622240e70af12a049b6401549764ec430896d254227403
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
require_relative 'lib/jekyll_plugin_support/version' Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength github = 'https://github.com/mslinn/jekyll_plugin_support' spec.bindir = 'exe' spec.authors = ['Mike Slinn'] spec.email = ['mslinn@mslinn.com'] spec.files = Dir['.rubocop.yml', 'LICENSE.*', 'Rakefile', '{lib,spec}/**/*', '*.gemspec', '*.md'] spec.homepage = 'https://www.mslinn.com/blog/2020/10/03/jekyll-plugins.html#quote' 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_plugin_support' 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 = 'Provides support for writing Jekyll plugins.' spec.test_files = spec.files.grep %r{^(test|spec|features)/} spec.version = JekyllPluginSupportVersion::VERSION spec.add_dependency 'jekyll', '>= 3.5.0' spec.add_dependency 'jekyll_plugin_logger' spec.add_dependency 'key-value-parser' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jekyll_plugin_support-0.5.3 | jekyll_plugin_support.gemspec |
jekyll_plugin_support-0.5.2 | jekyll_plugin_support.gemspec |