-
Notifications
You must be signed in to change notification settings - Fork 7
/
what3words.gemspec
34 lines (28 loc) · 1.35 KB
/
what3words.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'what3words/version'
Gem::Specification.new do |spec|
spec.name = 'what3words'
spec.version = What3Words::VERSION
spec.authors = ['what3words']
spec.email = ['development@what3words.com']
spec.description = 'A Ruby wrapper for the what3words API'
spec.summary = 'Ruby wrapper for the what3words API'
spec.homepage = 'https://github.com/what3words/w3w-ruby-wrapper'
spec.license = 'MIT'
spec.files = Dir["lib/**/*.rb", "README.md"]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ['lib']
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '~> 2.6'
spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/what3words"
spec.metadata["source_code_uri"] = "https://github.com/what3words/w3w-ruby-wrapper"
spec.add_dependency('rest-client', '>= 1.8', '< 3.0')
spec.add_development_dependency 'bundler', '>= 1.7.9'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rspec', '~> 3.4'
spec.add_development_dependency 'rubocop', '~> 0.49.0'
spec.add_development_dependency 'webmock', '~> 3.0'
end