1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path("lib", __dir__)
require "jekyll-include-cache/version"
Gem::Specification.new do |s|
s.name = "jekyll-include-cache"
s.version = JekyllIncludeCache::VERSION
s.authors = ["Ben Balter"]
s.email = ["ben.balter@github.com"]
s.homepage = "https://github.com/benbalter/jekyll-include-cache"
s.summary = "A Jekyll plugin to cache the rendering of Liquid includes"
s.files = `git ls-files app lib`.split("\n")
s.platform = Gem::Platform::RUBY
s.require_paths = ["lib"]
s.license = "MIT"
s.add_dependency "jekyll", ">= 3.7", "< 5.0"
s.add_development_dependency "rspec", "~> 3.5"
s.add_development_dependency "rubocop", "~> 0.51"
s.add_development_dependency "rubocop-jekyll", "~> 0.3"
end
|