forked from Adyen/adyen-ruby-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adyen-ruby-api-library.gemspec
31 lines (25 loc) · 1.16 KB
/
adyen-ruby-api-library.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
require_relative 'lib/adyen/version'
Gem::Specification.new do |spec|
spec.name = 'adyen-ruby-api-library'
spec.version = Adyen::VERSION
spec.required_ruby_version = '>= 2.7.0'
spec.authors = ['Adyen']
spec.email = ['[email protected]']
spec.summary = 'Official Adyen Ruby API Library'
spec.description = 'Official Adyen API Library for Ruby. Simplifies integrating with the Adyen API,\
including Checkout, Marketpay, payments, recurring, and payouts. For support please reach out to \
[email protected]. If you would like to contribute please submit \
a comment or pull request at https://github.com/Adyen/adyen-ruby-api-library.'
spec.homepage = 'https://www.adyen.com'
spec.license = 'MIT'
spec.metadata = {
'documentation_uri' => 'https://docs.adyen.com/developers/development-resources/libraries',
'homepage_uri' => 'https://www.adyen.com',
'source_code_uri' => 'https://github.com/Adyen/adyen-ruby-api-library'
}
spec.files = `git ls-files`.split("\n")
spec.add_dependency 'faraday'
spec.add_development_dependency 'activesupport'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'webmock'
end