forked from dnagir/ruby-haml-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby-haml-js.gemspec
executable file
·25 lines (21 loc) · 1.06 KB
/
ruby-haml-js.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 "ruby-haml-js/version"
Gem::Specification.new do |s|
s.name = "ruby-haml-js"
s.version = RubyHamlJs::Version::VERSION
s.authors = ["Dmytrii Nagirniak"]
s.email = ["dnagir@gmail.com"]
s.homepage = "http://github.com/dnagir/ruby-haml-js"
s.summary = %q{Precompile HAML-JS templates with or without Rails 3.1 assets pipeline}
s.description = %q{ruby-haml-js provides a Tilt template that you can use to compile HAML-JS templates into JS functions. Handy for using it wth Bakcbone.js, Spine.js etc.}
s.rubyforge_project = "ruby-haml-js"
s.add_dependency 'sprockets', '>= 2.0.0', '< 4'
s.add_dependency 'execjs'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rails', '>= 3.1.1'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end