-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathquickpay-ruby-client.gemspec
More file actions
23 lines (18 loc) · 994 Bytes
/
quickpay-ruby-client.gemspec
File metadata and controls
23 lines (18 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "quickpay/api/version"
Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.5.0" # rubocop:disable Gemspec/RequiredRubyVersion
spec.name = "quickpay-ruby-client"
spec.version = QuickPay::API::VERSION
spec.authors = ["QuickPay Developers"]
spec.email = ["support@quickpay.net"]
spec.summary = "Ruby client for QuickPay API"
spec.description = "Embed QuickPay's secure payments directly into your Ruby applications. Learn more at https://tech.quickpay.net"
spec.homepage = "https://github.com/QuickPay/quickpay-ruby-client"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "json", "~> 2", ">= 2.5"
end