-
Notifications
You must be signed in to change notification settings - Fork 42
/
mollie-api-ruby.gemspec
35 lines (29 loc) · 1.25 KB
/
mollie-api-ruby.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
34
35
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'mollie/version'
Gem::Specification.new do |s|
s.name = 'mollie-api-ruby'
s.version = Mollie::VERSION
s.summary = 'Official Mollie API Client for Ruby'
s.description = %(Accepting iDEAL, Bancontact, SOFORT Banking, Creditcard,
SEPA Bank transfer, SEPA Direct debit, PayPal,
KBC Payment Button, CBC Payment Button, Belfius Direct
Net, paysafecard, PODIUM Cadeaukaart and ING Home’Pay online
payments without fixed monthly costs or any punishing registration
procedures.')
s.authors = ['Mollie B.V.']
s.email = ['[email protected]']
s.homepage = 'https://github.com/mollie/mollie-api-ruby'
s.license = 'BSD'
s.metadata = {
'changelog_uri' => 'https://github.com/mollie/mollie-api-ruby/blob/master/CHANGELOG.md'
}
s.required_ruby_version = '>= 2.5'
s.files = `git ls-files`.split("\n")
s.test_files = Dir['test/**/*']
s.add_dependency('ostruct', '~> 0.6.0')
s.add_dependency('bigdecimal', '~> 3.1', '>= 3.1.8')
s.add_development_dependency('rake')
s.add_development_dependency('rubocop', '~> 0.57.2')
s.add_development_dependency('test-unit')
s.add_development_dependency('webmock')
end