forked from jimsynz/hamlbars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hamlbars.gemspec
26 lines (22 loc) · 964 Bytes
/
hamlbars.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "hamlbars/version"
Gem::Specification.new do |s|
s.name = "hamlbars"
s.version = Hamlbars::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['James Harton']
s.email = ['[email protected]']
s.homepage = 'https://github.com/jamesotron/hamlbars'
s.summary = 'Extensions to Haml to allow creation of handlebars expressions.'
s.description = 'Hamlbars allows you to write handlebars templates using the familiar Haml syntax.'
s.add_dependency 'haml'
s.add_dependency 'sprockets'
s.add_dependency 'tilt'
s.add_dependency 'execjs', [">= 1.2"]
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', [">= 2.10.0"]
s.add_development_dependency 'activesupport'
s.files = %w(README.md History.md MIT-LICENSE) + Dir["lib/**/*"] + Dir["vendor/**/*"]
s.require_paths = ['lib']
end