Merge pull request #823 from TrangPham/master
Don't include test files in the exported gem
No related branches found
No related tags found
... | ... | @@ -14,7 +14,7 @@ Gem::Specification.new do |s| |
s.date = Date.today.to_s | ||
s.summary = "Complete geocoding solution for Ruby." | ||
s.description = "Provides object geocoding (by street or IP address), reverse geocoding (coordinates to street address), distance queries for ActiveRecord and Mongoid, result caching, and more. Designed for Rails but works with Sinatra and other Rack frameworks too." | ||
s.files = `git ls-files`.split("\n") - %w[geocoder.gemspec Gemfile init.rb] | ||
s.files = Dir['CHANGELOG.md', 'LICENSE', 'README.md', 'examples/**/*', 'lib/**/*', 'bin/*'] | ||
s.require_paths = ["lib"] | ||
s.executables = ["geocode"] | ||
s.license = 'MIT' | ||
... | ... |
Please register or sign in to comment