Files
funky/garth-jekyll-theme.gemspec
Michael Lynch 863954c90e Disabling execute permission on all files
Many files in the repo have the UNIX executable permission bit set, which indicates to the OS that these are executable binaries. None of these files are executable, so they should not have the executable permission bit set.
2019-03-03 16:07:41 -05:00

23 lines
804 B
Ruby

# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "garth-jekyll-theme"
spec.version = "1.0.2"
spec.authors = ["David Darnes"]
spec.email = ["me@daviddarnes.com"]
spec.summary = %q{A stupidly simple theme for Jekyll.}
spec.description = "A stupidly simple theme for Jekyll, using the official Jekyll theme implementation."
spec.homepage = "https://garth.darn.es"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|_sass|LICENSE|README)}i) }
spec.add_runtime_dependency "jekyll", "~> 3.6"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_development_dependency "bundler", "~> 1.14"
end