Skip to content

Commit

Permalink
Merge pull request #98 from AuthorizeNet/future
Browse files Browse the repository at this point in the history
merging future branch for new release.
  • Loading branch information
Sunny Raj Rathod authored Oct 20, 2016
2 parents 372f4ce + ed29994 commit 3cb000a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 7 additions & 3 deletions authorizenet.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Gem::Specification.new do |s|
s.name = "authorizenet"
s.version = "1.9.0.1"
s.version = "1.9.0.2"
s.platform = Gem::Platform::RUBY
s.date = "2016-08-12"
s.date = "2016-10-20"
s.summary = "Authorize.Net Payments SDK"
s.description = "Authorize.Net SDK includes standard payments, recurring billing, and customer profiles"
s.authors = ["Authorize.Net"]
Expand All @@ -14,7 +14,11 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.1.0'
s.required_rubygems_version = '>= 1.3.6'

s.add_runtime_dependency 'activesupport', '= 4.2.6'
if RUBY_VERSION < '2.2'
s.add_runtime_dependency 'activesupport', '= 4.2.6'
else
s.add_runtime_dependency 'activesupport', '>= 4.2.6'
end
s.add_runtime_dependency 'nokogiri', '~> 1.6', '>= 1.6.4'
s.add_runtime_dependency "roxml", "= 3.3.1"

Expand Down
2 changes: 1 addition & 1 deletion lib/authorize_net/api/constants.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
clientId: sdk-ruby-1.9.0.1
clientId: sdk-ruby-1.9.0.2
8 changes: 4 additions & 4 deletions lib/authorize_net/api/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1183,8 +1183,8 @@ class CustomerProfileType
xml_accessor :merchantCustomerId
xml_accessor :description
xml_accessor :email
xml_accessor :paymentProfiles
xml_accessor :shipToList
xml_accessor :paymentProfiles, :from => 'paymentProfiles', :as => [CustomerPaymentProfileType]
xml_accessor :shipToList, :from => 'shipToList', :as => [CustomerAddressType]

def initialize(merchantCustomerId = nil, description = nil, email = nil, paymentProfiles = [], shipToList = [])
@merchantCustomerId = merchantCustomerId
Expand Down Expand Up @@ -2961,8 +2961,8 @@ class CreateCustomerProfileResponse
xml_accessor :messages, :as => MessagesType
xml_accessor :sessionToken
xml_accessor :customerProfileId
xml_accessor :customerPaymentProfileIdList
xml_accessor :customerShippingAddressIdList
xml_accessor :customerPaymentProfileIdList, :as => NumericStringsType
xml_accessor :customerShippingAddressIdList, :as => NumericStringsType
xml_accessor :validationDirectResponseList

def initialize(refId = nil, messages = nil, sessionToken = nil, customerProfileId = nil, customerPaymentProfileIdList = nil, customerShippingAddressIdList = nil, validationDirectResponseList = nil)
Expand Down

0 comments on commit 3cb000a

Please sign in to comment.