-
Notifications
You must be signed in to change notification settings - Fork 55
/
html2haml.gemspec
28 lines (24 loc) · 1.05 KB
/
html2haml.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/html2haml/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Akira Matsuda", "Stefan Natchev"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{Converts HTML into Haml}
gem.summary = %q{Converts HTML into Haml}
gem.homepage = "http://haml.info"
gem.license = "MIT"
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 = "html2haml"
gem.require_paths = ["lib"]
gem.version = Html2haml::VERSION
gem.required_ruby_version = '>= 1.9.2'
gem.add_dependency 'nokogiri', '>= 1.6.0'
gem.add_dependency 'erubis', '~> 2.7.0'
gem.add_dependency 'ruby_parser', '~> 3.5'
gem.add_dependency 'haml', '>= 4.0'
gem.add_development_dependency 'simplecov', '~> 0.7.1'
gem.add_development_dependency 'minitest', '>= 4.4.0'
gem.add_development_dependency 'rake'
end