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
|
$:.push File.expand_path("../lib", __FILE__)
require "rabl-rails/version"
Gem::Specification.new do |s|
s.name = "rabl-rails"
s.version = RablRails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Christopher Cocchi-Perrier"]
s.email = ["cocchi.c@gmail.com"]
s.homepage = "https://github.com/ccocchi/rabl-rails"
s.summary = "Fast Rails 4+ templating system with JSON, XML and PList support"
s.description = "Fast Rails 4+ templating system with JSON, XML and PList support"
s.license = 'MIT'
s.required_ruby_version = '>= 2.2.0'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency 'activesupport', '>= 4.2'
s.add_dependency 'railties', '>= 4.2'
s.add_dependency 'concurrent-ruby', '~> 1.0', ">= 1.0.2"
s.add_development_dependency 'actionpack', '>= 4.2'
s.add_development_dependency 'actionview', '>= 4.2'
end
|