1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/hamilton.gemspec

32 lines
1.2 KiB
Ruby
Raw Normal View History

2015-03-09 01:36:35 -04:00
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hamilton/version'
Gem::Specification.new do |spec|
spec.name = "hamilton"
spec.version = Hamilton::VERSION
spec.authors = ["Takashi Kokubun"]
spec.email = ["takashikkbn@gmail.com"]
2015-03-09 01:40:11 -04:00
spec.summary = %q{Yet another haml implementation}
spec.description = %q{Yet another haml implementation}
spec.homepage = "https://github.com/k0kubun/hamilton"
2015-03-09 01:36:35 -04:00
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
2015-03-09 02:22:59 -04:00
spec.add_development_dependency "benchmark-ips"
2015-03-09 02:37:26 -04:00
spec.add_development_dependency "bundler"
spec.add_development_dependency "erubis"
spec.add_development_dependency "fast_haml"
2015-03-09 02:22:59 -04:00
spec.add_development_dependency "haml"
2015-03-09 06:14:31 -04:00
spec.add_development_dependency "pry"
2015-03-09 02:37:26 -04:00
spec.add_development_dependency "rake"
2015-03-09 10:21:28 -04:00
spec.add_development_dependency "rspec", ">= 3"
2015-03-09 02:22:59 -04:00
spec.add_development_dependency "slim"
2015-03-09 03:08:19 -04:00
spec.add_development_dependency "tenjin"
2015-03-09 01:36:35 -04:00
end