2012-06-04 15:28:23 -03:00
|
|
|
($LOAD_PATH << File.expand_path("../lib", __FILE__)).uniq!
|
|
|
|
require "haml/version"
|
2012-05-30 16:01:31 -03:00
|
|
|
|
2012-04-27 13:46:28 -03:00
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = 'haml'
|
|
|
|
spec.summary = "An elegant, structured (X)HTML/XML templating engine."
|
2012-05-30 16:01:31 -03:00
|
|
|
spec.version = Haml::VERSION
|
2017-02-26 20:26:33 +09:00
|
|
|
spec.authors = ['Natalie Weizenbaum', 'Hampton Catlin', 'Norman Clarke', 'Akira Matsuda']
|
2017-10-26 10:56:31 +09:00
|
|
|
spec.email = ['haml@googlegroups.com', 'ronnie@dio.jp']
|
2008-04-29 01:54:31 -07:00
|
|
|
|
2012-06-06 18:56:06 -03:00
|
|
|
spec.executables = ['haml']
|
2017-05-02 01:33:43 -07:00
|
|
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
|
|
f.match(%r{\Atest/})
|
|
|
|
end
|
2012-05-01 10:25:56 -03:00
|
|
|
spec.homepage = 'http://haml.info/'
|
2013-01-29 18:02:17 +01:00
|
|
|
spec.license = "MIT"
|
2019-05-17 10:20:13 +10:00
|
|
|
spec.metadata = {
|
|
|
|
"bug_tracker_uri" => "https://github.com/haml/haml/issues",
|
2020-07-25 14:05:48 -04:00
|
|
|
"changelog_uri" => "https://github.com/haml/haml/blob/main/CHANGELOG.md",
|
2019-05-17 10:20:13 +10:00
|
|
|
"documentation_uri" => "http://haml.info/docs.html",
|
|
|
|
"homepage_uri" => "http://haml.info",
|
|
|
|
"mailing_list_uri" => "https://groups.google.com/forum/?fromgroups#!forum/haml",
|
|
|
|
"source_code_uri" => "https://github.com/haml/haml"
|
|
|
|
}
|
2008-04-24 21:35:30 -07:00
|
|
|
|
2015-06-08 12:56:04 -03:00
|
|
|
spec.required_ruby_version = '>= 2.0.0'
|
2013-05-22 22:49:48 -06:00
|
|
|
|
2017-02-12 23:09:47 +09:00
|
|
|
spec.add_dependency 'temple', '>= 0.8.0'
|
2013-12-24 11:25:20 -07:00
|
|
|
spec.add_dependency 'tilt'
|
2012-05-05 09:33:07 -03:00
|
|
|
|
2015-06-08 14:55:59 -03:00
|
|
|
spec.add_development_dependency 'rails', '>= 4.0.0'
|
2012-04-27 22:08:02 -03:00
|
|
|
spec.add_development_dependency 'rbench'
|
2013-12-27 13:20:30 -08:00
|
|
|
spec.add_development_dependency 'minitest', '>= 4.0'
|
2017-01-20 18:21:06 +09:00
|
|
|
spec.add_development_dependency 'nokogiri'
|
2020-09-11 13:26:03 +02:00
|
|
|
spec.add_development_dependency 'simplecov'
|
2009-07-04 15:56:32 -07:00
|
|
|
|
2012-04-27 13:46:28 -03:00
|
|
|
spec.description = <<-END
|
|
|
|
Haml (HTML Abstraction Markup Language) is a layer on top of HTML or XML that's
|
|
|
|
designed to express the structure of documents in a non-repetitive, elegant, and
|
|
|
|
easy way by using indentation rather than closing tags and allowing Ruby to be
|
|
|
|
embedded with ease. It was originally envisioned as a plugin for Ruby on Rails,
|
|
|
|
but it can function as a stand-alone templating engine.
|
|
|
|
END
|
2012-06-14 15:43:44 -03:00
|
|
|
|
2008-04-24 21:35:30 -07:00
|
|
|
end
|