-
Notifications
You must be signed in to change notification settings - Fork 0
/
underpass.gemspec
38 lines (30 loc) · 1.16 KB
/
underpass.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true
require 'date'
require File.expand_path('lib/underpass/version', __dir__)
Gem::Specification.new do |s|
s.name = 'underpass'
s.version = Underpass.gem_version
s.summary = <<-SUMMARY
A library that translates Overpass API responses into RGeo objects
SUMMARY
s.description = <<-DESCRIPTION
A library that makes it easy to query the Overpass API and translate its responses into RGeo objects
DESCRIPTION
s.authors = ['Janos Rusiczki']
s.email = '[email protected]'
s.homepage = 'http://github.com/haiafara/underpass'
s.licenses = ['MIT']
s.metadata = {
'source_code_uri' => s.homepage,
'bug_tracker_uri' => "#{s.homepage}/issues"
}
s.require_paths = ['lib']
s.files = Dir['lib/**/*.rb', 'LICENSE', 'README.md'].to_a
s.required_ruby_version = '>= 2.4.0'
s.rubygems_version = '3.0.1'
s.add_runtime_dependency 'rgeo', '2.3.0'
s.add_development_dependency 'guard', '~> 2.16.1', '>= 2.15.0'
s.add_development_dependency 'guard-rspec', '~> 4.7.3', '>= 4.7.3'
s.add_development_dependency 'guard-rubocop', '~> 1.4.0', '>= 1.3.0'
s.add_development_dependency 'rspec', '~> 3.8', '>= 3.8.0'
end