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 "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.files = Dir.glob("**/*").grep_v(%r{^(bin|debian|examples|fixtures|spec|test)/})
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
end
|