minify-html/ruby/hyperbuild.gemspec

17 lines
520 B
Ruby
Raw Normal View History

2020-01-19 03:19:33 -05:00
require 'rake'
Gem::Specification.new do |spec|
spec.name = "hyperbuild"
2020-07-11 09:26:37 -04:00
spec.version = "0.2.4"
2020-01-19 03:19:33 -05:00
spec.authors = ["Wilson Lin"]
spec.email = ["code@wilsonl.in"]
spec.license = "MIT"
2020-01-19 09:13:21 -05:00
spec.files = FileList["lib/*", "README.md"].to_a
2020-07-10 06:51:59 -04:00
spec.summary = "Fast allocation-less HTML minifier with smart whitespace handling"
2020-01-19 03:19:33 -05:00
spec.homepage = "https://github.com/wilsonzlin/hyperbuild"
spec.require_paths = ["lib"]
spec.add_dependency "fiddle", "~> 1.0"
end