forked from nesquena/rabl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rabl.gemspec
36 lines (30 loc) · 1.15 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
34
35
36
# -*- 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 = ["nesquena@gmail.com"]
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.license = 'MIT'
s.rubyforge_project = "rabl"
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
if RUBY_VERSION < "1.9"
s.add_dependency 'activesupport', '>= 2.3.14', '<= 4'
else
s.add_dependency "activesupport", '>= 2.3.14'
end
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 'oj'
s.add_development_dependency 'msgpack', '~> 0.4.5'
s.add_development_dependency 'bson', '~> 1.7.0'
s.add_development_dependency 'plist'
end