-
Notifications
You must be signed in to change notification settings - Fork 0
/
mustache_wax.gemspec
27 lines (23 loc) · 1.14 KB
/
mustache_wax.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mustache_wax/version"
Gem::Specification.new do |s|
s.name = "mustache_wax"
s.version = MustacheWax::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Burke Libbey"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/innovatis/mustache_wax"
s.summary = %q{easy reuse of mustache templates between server and client}
s.description = %q{MustacheWax is a gem that makes rails understand mustache templates, and exposes them all to your client side code using a simple, sane API.}
s.add_runtime_dependency 'yajl-ruby'
s.add_runtime_dependency 'rails', '~> 3.0'
s.add_runtime_dependency 'mustache'
s.add_development_dependency 'rspec', '~> 2.1.0'
s.add_development_dependency 'rcov', '>= 0'
s.add_development_dependency 'fakefs'
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