forked from jed-rgnets/onlinepayments-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathonlinepayments-sdk-ruby.gemspec
More file actions
30 lines (26 loc) · 1.5 KB
/
onlinepayments-sdk-ruby.gemspec
File metadata and controls
30 lines (26 loc) · 1.5 KB
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
Gem::Specification.new do |spec|
spec.name = 'onlinepayments-sdk-ruby'
spec.version = '5.1.0'
spec.authors = ['Online Payments support team']
spec.email = ['96182451+online-payments-support-team@users.noreply.github.com']
spec.summary = %q{SDK to communicate with the Online Payments platform using the Online Payments Server API}
spec.description = %q{SDK to communicate with the Online Payments platform using the Online Payments Server API}
spec.homepage = %q{https://github.com/Online-Payments/sdk-ruby}
spec.license = 'MIT'
# exclude hidden files like .gitignore
spec.files = Dir['lib/**/*'] + Dir['spec/**/*'] +
['onlinepayments-sdk-ruby.gemspec', 'Gemfile', 'LICENSE.txt', 'Rakefile', 'README.md']
spec.executables = spec.files.grep(%r{^bin\/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)\/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0'
spec.add_dependency 'httpclient', '~> 2.8'
spec.add_dependency 'concurrent-ruby', '~>1.0'
spec.add_development_dependency 'yard', '~> 0.9'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'webmock', '~> 2.1'
spec.add_development_dependency 'sinatra', '~> 2.1'
spec.add_development_dependency 'webrick', '~> 1.7'
spec.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
# spec.metadata['yard.run'] = 'yri' # compiles yard doc on install
end