-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathauthorizenet.gemspec
More file actions
24 lines (21 loc) · 948 Bytes
/
authorizenet.gemspec
File metadata and controls
24 lines (21 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
s.name = "authorizenet"
s.version = "2.0.2"
s.platform = Gem::Platform::RUBY
s.date = "2021-03-31"
s.summary = "Authorize.Net Payments SDK"
s.description = "Authorize.Net SDK includes standard payments, recurring billing, and customer profiles"
s.authors = ["Authorize.Net"]
s.email = "developer@authorize.net"
s.files = Dir.glob("{lib}/**/*")
s.homepage = "https://github.com/AuthorizeNet/sdk-ruby"
s.license = "https://github.com/AuthorizeNet/sdk-ruby/blob/master/LICENSE.txt"
s.required_ruby_version = '>= 2.4.0'
s.required_rubygems_version = '>= 1.3.7'
s.add_runtime_dependency 'activesupport', '>= 5.2.4.5'
s.add_runtime_dependency 'nokogiri', '~> 1.6', '>= 1.6.4'
s.add_runtime_dependency 'roxml', '>= 3.3.1'
s.add_runtime_dependency 'rexml', '>= 3.2.0'
s.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
s.add_development_dependency 'rspec', '~> 3.9.0'
end