Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lint file and bump theme dependencies #6698

Merged
merged 1 commit into from Jan 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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