rabl-rails/rabl-rails.gemspec

23 lines
793 B
Ruby
Raw Permalink Normal View History

2012-02-22 10:42:38 +00:00
$:.push File.expand_path("../lib", __FILE__)
2012-04-20 14:28:34 +00:00
require "rabl-rails/version"
2012-02-22 10:42:38 +00:00
Gem::Specification.new do |s|
2012-04-20 14:28:34 +00:00
s.name = "rabl-rails"
s.version = RablRails::VERSION
2012-07-15 21:31:51 +00:00
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 3+ templating system with JSON and XML support"
s.description = "Fast Rails 3+ templating system with JSON and XML support"
2012-02-22 10:42:38 +00:00
2012-07-15 21:31:51 +00:00
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.require_paths = ["lib"]
2012-02-22 10:42:38 +00:00
2012-07-15 21:31:51 +00:00
s.add_dependency "activesupport", "~> 3.0"
s.add_dependency "railties", "~> 3.0"
2012-02-22 10:42:38 +00:00
2012-07-15 21:31:51 +00:00
s.add_development_dependency "actionpack", "~> 3.0"
2012-02-22 10:42:38 +00:00
end