forked from haml/haml-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
haml-rails.gemspec
31 lines (26 loc) · 1.35 KB
/
haml-rails.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
29
30
31
# -*- 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 = ["[email protected]"]
s.homepage = "http://github.com/indirect/haml-rails"
s.summary = "let your Gemfile do the configuring"
s.description = "Haml-rails provides Haml generators for Rails 3. 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.rubyforge_project = "haml-rails"
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "haml", [">= 3.1", "< 4.1"]
s.add_dependency "activesupport", [">= 3.1", "< 4.1"]
s.add_dependency "actionpack", [">= 3.1", "< 4.1"]
s.add_dependency "railties", [">= 3.1", "< 4.1"]
s.add_development_dependency "rails", [">= 3.1", "< 4.1"]
s.add_development_dependency "bundler", "~> 1.2"
s.add_development_dependency "rake"
s.add_development_dependency 'appraisal', '>= 0.3.8'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.require_path = 'lib'
end