haml--haml-rails/haml-rails.gemspec

33 lines
1.3 KiB
Ruby
Raw Normal View History

2010-08-14 00:23:52 +00:00
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/haml-rails/version", __FILE__)
2010-08-14 00:23:52 +00:00
Gem::Specification.new do |s|
s.name = "haml-rails"
s.version = Haml::Rails::VERSION
2010-08-14 00:23:52 +00:00
s.platform = Gem::Platform::RUBY
s.authors = ["André Arko"]
s.email = ["andre@arko.net"]
s.homepage = "https://github.com/haml/haml-rails"
2010-08-14 00:23:52 +00:00
s.summary = "let your Gemfile do the configuring"
s.description = "Haml-rails provides Haml generators for Rails 5. It also enables Haml as the templating engine for you, so you don't have to screw around in your own application.rb when your Gemfile already clearly indicated what templating engine you have installed. Hurrah."
2012-12-08 19:19:41 +00:00
s.licenses = ["MIT"]
2010-08-14 00:23:52 +00:00
2019-03-08 18:15:54 +00:00
s.required_rubygems_version = ">= 2.0.0"
s.required_ruby_version = ">= 2.3.0"
2010-08-16 04:07:12 +00:00
2022-09-23 10:54:38 +00:00
s.add_dependency "haml", [">= 4.0.6"]
s.add_dependency "activesupport", [">= 5.1"]
s.add_dependency "actionpack", [">= 5.1"]
s.add_dependency "railties", [">= 5.1"]
2019-11-12 03:47:08 +00:00
s.add_development_dependency "html2haml", [">= 1.0.1"]
s.add_development_dependency "rails", [">= 5.1"]
s.add_development_dependency "bundler"
2013-02-14 04:44:38 +00:00
s.add_development_dependency "rake"
s.add_development_dependency 'appraisal'
2010-08-14 00:23:52 +00:00
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
2010-08-30 13:37:49 +00:00
end