jekyll-theme-leaf.gemspec 897 B

12345678910111213141516171819202122
  1. # frozen_string_literal: true
  2. Gem::Specification.new do |spec|
  3. spec.name = "jekyll-theme-leaf"
  4. spec.version = "0.1.0"
  5. spec.authors = ["Supun Kavinda"]
  6. spec.email = ["supunkavinda1125@gmail.com"]
  7. spec.summary = "Minimal yet beautiful Jekyll theme for dark background lovers."
  8. spec.homepage = "https://github.com/SupunKavinda/jekyll-theme-leaf"
  9. spec.license = "MIT"
  10. spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) }
  11. spec.add_runtime_dependency "jekyll", "~> 3.8"
  12. spec.add_runtime_dependency "jekyll-feed", "~> 0.9"
  13. spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"
  14. spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.0"
  15. spec.add_development_dependency "bundler", "~> 2.2.13"
  16. spec.add_development_dependency "rake", "~> 12.0"
  17. end