-
Notifications
You must be signed in to change notification settings - Fork 0
/
paypoint-blue.gemspec
33 lines (28 loc) · 1.28 KB
/
paypoint-blue.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'paypoint/blue/version'
Gem::Specification.new do |spec|
spec.name = "paypoint-blue"
spec.version = PayPoint::Blue::VERSION
spec.authors = ["Laszlo Bacsi"]
spec.email = ["[email protected]"]
spec.summary = %q{API client for PayPoint Blue}
spec.description = %q{API client for PayPoint's 3rd generation PSP product a.k.a PayPoint Blue}
spec.homepage = "https://github.com/CPlus/paypoint-blue"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "faraday"
spec.add_dependency "faraday_middleware"
spec.add_dependency "hashie"
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 13.0.3"
spec.add_development_dependency "webmock"
spec.add_development_dependency "guard"
spec.add_development_dependency "guard-minitest"
spec.add_development_dependency "terminal-notifier-guard"
spec.add_development_dependency "terminal-notifier"
end