haml--haml/hamlit.gemspec

29 lines
1.0 KiB
Ruby
Raw Normal View History

2015-10-06 12:21:20 +00:00
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hamlit/version'
Gem::Specification.new do |spec|
2015-10-06 13:24:00 +00:00
spec.name = 'hamlit'
2015-10-06 12:21:20 +00:00
spec.version = Hamlit::VERSION
2015-10-06 13:24:00 +00:00
spec.authors = ['Takashi Kokubun']
spec.email = ['takashikkbn@gmail.com']
2015-10-06 12:21:20 +00:00
2015-10-06 13:11:19 +00:00
spec.summary = %q{High Performance Haml Implementation}
spec.description = %q{High Performance Haml Implementation}
2015-10-06 13:24:00 +00:00
spec.homepage = 'https://github.com/k0kubun/hamlit'
spec.license = 'MIT'
2015-10-06 12:21:20 +00:00
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
2015-10-06 13:24:00 +00:00
spec.bindir = 'exe'
2015-10-06 12:21:20 +00:00
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2015-10-06 13:24:00 +00:00
spec.require_paths = ['lib']
2015-10-06 12:21:20 +00:00
2015-10-06 13:32:15 +00:00
spec.add_dependency 'haml', '~> 4.0'
2015-10-06 14:14:45 +00:00
spec.add_dependency 'temple', '~> 0.7.6'
2015-10-06 13:32:15 +00:00
2015-10-06 13:24:00 +00:00
spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'rake', '~> 10.0'
2015-10-07 12:08:56 +00:00
spec.add_development_dependency 'thor', '~> 0.19'
2015-10-06 12:21:20 +00:00
end