forked from paolochiodi/htmlcompressor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlcompressor.gemspec
More file actions
22 lines (19 loc) · 912 Bytes
/
htmlcompressor.gemspec
File metadata and controls
22 lines (19 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/htmlcompressor/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Paolo Chiodi"]
gem.email = ["chiodi84@gmail.com"]
gem.description = %q{Put your html on a diet}
gem.summary = %q{htmlcompressor provides a class and a rack middleware to minify html pages}
gem.homepage = ""
gem.add_development_dependency 'yui-compressor', '~> 0.9'
gem.add_development_dependency 'closure-compiler', '~> 1.1'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'minitest', '~> 5.0'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "htmlcompressor"
gem.require_paths = ["lib"]
gem.version = HtmlCompressor::VERSION
end