-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathhaml-rails.gemspec
More file actions
33 lines (27 loc) · 1.37 KB
/
haml-rails.gemspec
File metadata and controls
33 lines (27 loc) · 1.37 KB
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
29
30
31
32
33
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/haml-rails/version", __FILE__)
Gem::Specification.new do |s|
s.name = "haml-rails"
s.version = Haml::Rails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["André Arko"]
s.email = ["andre@arko.net"]
s.homepage = "https://github.com/haml/haml-rails"
s.summary = "let your Gemfile do the configuring"
s.description = "Haml-rails provides Haml generators for Rails 5.1 and above. 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."
s.licenses = ["MIT"]
s.metadata = { "rubygems_mfa_required" => "true" }
s.required_rubygems_version = ">= 2.0.0"
s.required_ruby_version = ">= 2.3.0"
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"]
s.add_development_dependency "html2haml", [">= 1.0.1"]
s.add_development_dependency "rails", [">= 5.1"]
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
end