forked from nesquena/rabl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rabl.gemspec
33 lines (28 loc) · 1.25 KB
/
rabl.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
32
33
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rabl/version"
Gem::Specification.new do |s|
s.name = "rabl"
s.version = Rabl::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nathan Esquenazi"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/nesquena/rabl"
s.summary = %q{General ruby templating with json, bson, xml and msgpack support}
s.description = %q{General ruby templating with json, bson, xml and msgpack support}
s.rubyforge_project = "rabl"
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"]
s.add_dependency 'activesupport', '>= 2.3.14'
s.add_dependency 'multi_json', '~> 1.0'
s.add_development_dependency 'riot', '~> 0.12.3'
s.add_development_dependency 'rr', '~> 1.0.2'
s.add_development_dependency 'rake'
s.add_development_dependency 'tilt'
s.add_development_dependency 'yajl-ruby'
s.add_development_dependency 'msgpack', '~> 0.4.5'
s.add_development_dependency 'bson', '~> 1.5.2'
s.add_development_dependency 'plist'
end