rabl-rails/rabl-rails.gemspec

25 lines
783 B
Ruby
Raw Normal View History

2012-02-22 10:42:38 +00:00
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
2012-04-20 14:28:34 +00:00
require "rabl-rails/version"
2012-02-22 10:42:38 +00:00
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
2012-04-20 14:28:34 +00:00
s.name = "rabl-rails"
s.version = RablRails::VERSION
2012-02-22 10:42:38 +00:00
s.authors = ["TODO: Your name"]
s.email = ["TODO: Your email"]
s.homepage = "TODO"
2012-04-20 14:28:34 +00:00
s.summary = "TODO: Summary of RablRails."
s.description = "TODO: Description of RablRails."
2012-02-22 10:42:38 +00:00
2012-02-22 18:14:00 +00:00
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
2012-02-22 10:42:38 +00:00
s.test_files = Dir["test/**/*"]
2012-04-03 17:10:37 +00:00
s.add_dependency "activesupport", "~> 3.2.1"
2012-02-22 10:42:38 +00:00
s.add_development_dependency "sqlite3"
2012-04-03 17:10:37 +00:00
s.add_development_dependency "railties", "~> 3.2.1"
s.add_development_dependency "actionpack", "~> 3.2.1"
2012-02-22 10:42:38 +00:00
end