mirror of
https://github.com/adulau/art.git
synced 2024-11-21 17:47:05 +00:00
20 lines
727 B
Ruby
20 lines
727 B
Ruby
# coding: utf-8
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "forty_jekyll_theme"
|
|
spec.version = "0.1.7"
|
|
spec.authors = ["Andrew Banchich"]
|
|
spec.email = ["andrewbanchich@gmail.com"]
|
|
|
|
spec.summary = %q{A Jekyll version of the "Forty" theme by HTML5 UP.}
|
|
spec.homepage = "https://gitlab.com/andrewbanchich/forty-jekyll-theme"
|
|
spec.license = "MIT"
|
|
|
|
spec.files = `git ls-files -z`.split("\x0").select do |f|
|
|
f.match(%r{^(_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i)
|
|
end
|
|
|
|
spec.add_development_dependency "jekyll", "~> 3.3"
|
|
spec.add_development_dependency "bundler", "~> 1.12"
|
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
end
|