forked from mollie/mollie-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmollie.gemspec
More file actions
23 lines (19 loc) · 1017 Bytes
/
mollie.gemspec
File metadata and controls
23 lines (19 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'Mollie/API/Client/Version'
spec = Gem::Specification.new do |s|
s.name = 'mollie-api-ruby'
s.version = Mollie::API::Client::CLIENT_VERSION
s.summary = 'Official Mollie API Client for Ruby'
s.description = 'Accepting iDEAL, Bancontact/Mister Cash, SOFORT Banking, Creditcard, SEPA Bank transfer, SEPA Direct debit, Bitcoin, PayPal, Belfius Direct Net, paysafecard and PODIUM Cadeaukaart online payments without fixed monthly costs or any punishing registration procedures.'
s.authors = ['Rick Wong']
s.email = ['info@mollie.nl']
s.homepage = 'https://github.com/mollie/mollie-api-ruby'
s.license = 'BSD'
s.required_ruby_version = '>= 1.9.3'
s.add_dependency('rest-client', '~> 1.8')
s.add_dependency('json', '~> 1.8')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
end