Rubocop
# coding: utf-8 | ||
# frozen_string_literal: true | ||
Gem::Specification.new do |spec| | ||
spec.name = "minima" | ||
... | ... | @@ -6,17 +6,17 @@ Gem::Specification.new do |spec| |
spec.authors = ["Joel Glovier"] | ||
spec.email = ["jglovier@github.com"] | ||
spec.summary = %q{A beautiful, minimal theme for Jekyll.} | ||
spec.summary = "A beautiful, minimal theme for Jekyll." | ||
spec.homepage = "https://github.com/jekyll/minima" | ||
spec.license = "MIT" | ||
spec.metadata["plugin_type"] = "theme" | ||
spec.files = `git ls-files -z`.split("\x0").select do |f| | ||
f.match(%r{^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i) | ||
spec.files = `git ls-files -z`.split("\x0").select do |f| | ||
f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i) | ||
end | ||
spec.add_runtime_dependency "jekyll", "~> 3.5" | ||
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1" | ||
spec.add_development_dependency "bundler", "~> 1.12" | ||
spec.add_development_dependency "bundler", "~> 1.15" | ||
end |
Please register or sign in to comment