Ruby gem for building arbitrary static websites. https://rubygems.org/gems/petrify
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1017 B

  1. # coding: utf-8
  2. lib = File.expand_path("../lib", __FILE__)
  3. $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
  4. require "petrify/version"
  5. Gem::Specification.new do |spec|
  6. spec.name = "petrify"
  7. spec.version = Petrify::VERSION
  8. spec.authors = ["Adrian Short"]
  9. spec.email = ['adrian@adrianshort.org']
  10. spec.licenses = ['MIT']
  11. spec.summary = %q{A data(base)-driven static site generator with Haml templates.}
  12. #spec.description = %q{TODO: Write a longer description or delete this line.}
  13. spec.homepage = "https://git.adrianshort.org/adrian/petrify"
  14. spec.files = `git ls-files -z`.split("\x0").reject do |f|
  15. f.match(%r{^(test|spec|features)/})
  16. end
  17. spec.bindir = "exe"
  18. spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  19. spec.require_paths = ["lib"]
  20. spec.add_development_dependency "bundler", "~> 2.1"
  21. spec.add_development_dependency "rake", "~> 10.0"
  22. spec.add_runtime_dependency "haml", "~> 5.0"
  23. end