2015-10-06 08:21:20 -04: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 09:24:00 -04:00
|
|
|
spec.name = 'hamlit'
|
2015-10-06 08:21:20 -04:00
|
|
|
spec.version = Hamlit::VERSION
|
2015-10-06 09:24:00 -04:00
|
|
|
spec.authors = ['Takashi Kokubun']
|
|
|
|
spec.email = ['takashikkbn@gmail.com']
|
2015-10-06 08:21:20 -04:00
|
|
|
|
2015-10-06 09:11:19 -04:00
|
|
|
spec.summary = %q{High Performance Haml Implementation}
|
|
|
|
spec.description = %q{High Performance Haml Implementation}
|
2015-10-06 09:24:00 -04:00
|
|
|
spec.homepage = 'https://github.com/k0kubun/hamlit'
|
|
|
|
spec.license = 'MIT'
|
2015-10-06 08:21:20 -04:00
|
|
|
|
|
|
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
2015-10-06 09:24:00 -04:00
|
|
|
spec.bindir = 'exe'
|
2015-10-06 08:21:20 -04:00
|
|
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
2015-10-06 09:24:00 -04:00
|
|
|
spec.require_paths = ['lib']
|
2015-10-06 08:21:20 -04:00
|
|
|
|
2015-10-06 09:32:15 -04:00
|
|
|
spec.add_dependency 'haml', '~> 4.0'
|
|
|
|
|
2015-10-06 09:24:00 -04:00
|
|
|
spec.add_development_dependency 'bundler', '~> 1.10'
|
|
|
|
spec.add_development_dependency 'rake', '~> 10.0'
|
2015-10-06 08:21:20 -04:00
|
|
|
end
|