china_city.gemspec 630 B

123456789101112131415161718192021
  1. $:.push File.expand_path("../lib", __FILE__)
  2. # Maintain your gem's version:
  3. require "china_city/version"
  4. # Describe your gem and declare its dependencies:
  5. Gem::Specification.new do |s|
  6. s.name = "china_city"
  7. s.version = ChinaCity::VERSION
  8. s.authors = ["TODO: Your name"]
  9. s.email = ["TODO: Your email"]
  10. s.homepage = "TODO"
  11. s.summary = "TODO: Summary of ChinaCity."
  12. s.description = "TODO: Description of ChinaCity."
  13. s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
  14. s.add_dependency "rails", "~> 4.0.0"
  15. s.add_development_dependency "sqlite3"
  16. end