taiwan_city.gemspec 1.0 KB

123456789101112131415161718192021222324252627282930
  1. $:.push File.expand_path("../lib", __FILE__)
  2. # Maintain your gem's version:
  3. require "taiwan_city/version"
  4. # Describe your gem and declare its dependencies:
  5. Gem::Specification.new do |s|
  6. s.name = "taiwan_city"
  7. s.version = TaiwanCity::VERSION
  8. s.authors = ["motephyr"]
  9. s.email = ["motephyr@gmail.com"]
  10. s.homepage = "https://github.com/motephyr/taiwan_city"
  11. s.summary = "a gem to help you select taiwan area"
  12. s.description = "a gem to help you select taiwan area like city and district"
  13. s.license = 'MIT'
  14. s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
  15. s.test_files = Dir["spec/**/*"]
  16. # s.add_dependency "rails", "~> 3.1.0"
  17. s.add_dependency "rails", ">= 3.1.0"
  18. s.add_dependency "jquery-rails"
  19. s.add_development_dependency "sqlite3"
  20. s.add_development_dependency "rspec-rails"
  21. s.add_development_dependency "coffee-rails"
  22. s.add_development_dependency 'capybara'
  23. s.add_development_dependency 'launchy'
  24. s.add_development_dependency 'poltergeist'
  25. end