-
Notifications
You must be signed in to change notification settings - Fork 8
/
dhl-bcs.gemspec
29 lines (24 loc) · 1.23 KB
/
dhl-bcs.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dhl/bcs/version'
Gem::Specification.new do |spec|
spec.name = "dhl-bcs"
spec.version = Dhl::Bcs::VERSION
spec.authors = ["Christoph Wagner"]
spec.email = ["wagner@webit.de"]
spec.summary = %q{Client for DHL Business-Customer-Shipping SOAP API 2.0}
spec.description = %q{This is inspired by the dhl-intraship gem that is a little bit outdated and doesn't support the new DHL API. If you need DHL Express Services this is not for you.}
spec.homepage = "https://github.com/webit-de/dhl-bcs"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "savon", "~> 2.12"
spec.add_development_dependency "bundler", "~> 2.3"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", "~> 5.15"
spec.add_development_dependency "webmock", "~> 3.14"
spec.add_development_dependency "pry-byebug", "~> 3.9"
end