Skip to content

Commit

Permalink
Lint file and bump theme dependencies (#6698)
Browse files Browse the repository at this point in the history
Merge pull request 6698
  • Loading branch information
DirtyF authored and jekyllbot committed Jan 19, 2018
1 parent 603f2ea commit 7a78da8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/theme_template/theme.gemspec.erb
@@ -1,19 +1,19 @@
# coding: utf-8
# frozen_string_literal: true

Gem::Specification.new do |spec|
spec.name = <%= theme_name.inspect %>
spec.version = "0.1.0"
spec.authors = [<%= user_name.inspect %>]
spec.email = [<%= user_email.inspect %>]

spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.}
spec.summary = "TODO: Write a short summary, because Rubygems requires one."
spec.homepage = "TODO: Put your gem's website or public repo URL here."
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(<%= theme_directories.join("|") %>|LICENSE|README)}i) }
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(<%= theme_directories.join("|") %>|LICENSE|README)!i) }

spec.add_runtime_dependency "jekyll", "~> <%= jekyll_version_with_minor %>"

spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 12.0"
end

0 comments on commit 7a78da8

Please sign in to comment.