-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsepomex.gemspec
27 lines (23 loc) · 1.13 KB
/
sepomex.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "sepomex/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "sepomex_client"
spec.version = SEPOMEX::VERSION
spec.date = '2019-12-10'
spec.description = "SEPOMEX is a ruby integration to SEPOMEX clients for zip code information gathering"
spec.summary = "SEPOMEX is a library that integrates to multiple SEPOMEX clients for MX zip code information gathering"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.authors = ["Yellowme"]
spec.email = 'hola@yellowme.mx'
spec.homepage = 'https://github.com/yellowme/sepomex-ruby'
spec.license = 'MIT'
spec.add_dependency "sepomex_acrogenesis", ">= 0.5"
spec.add_dependency 'sepomex_hckdrk', ">= 0.4"
spec.add_development_dependency "rspec", "~> 3.8"
spec.add_development_dependency "webmock", "~> 3.7"
spec.add_development_dependency "simplecov", "~> 0.17"
end