asaas-ruby 0.2.12 → 0.2.25

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2ee9c37a26c1a3587826925c96ce00545281c6e39ff042cb2be84b4ddefd502
4
- data.tar.gz: ead4d415f731fae10da6f58bc8c0a3b4d603320db4778186f97e1e72ac085941
3
+ metadata.gz: 9014af80d8a4732eb528a51e063e99599dfdbbf968e40d91b2a73f747a58f13e
4
+ data.tar.gz: f0b671789d112681d5067da1ffe2f8fa80e31bae950877b1e25cfe38281402c6
5
5
  SHA512:
6
- metadata.gz: edc52f31943f281d0b420cba0e78f8aff779dbee2da83fe4d5e85adda537d64b91aae2dbab351ac9dc3437d37c89c88630acccd3144fac297db9be1426ff3165
7
- data.tar.gz: dea923e6cd22591ae9f0d5f19b6bde7f820b5de6aca2806f0a3bc9e6298e7933cba9668823c89b995a7ac5204da53fb3da694dee7f741ef399bdac16fd16c236
6
+ metadata.gz: 1e4a665d100614e4a709f511d01896169e29b2f9eea12ec01e32b48469eddc00f7415462e69e472f28a647ee96e74f1a5600626541a6770691a29a92d64a81f1
7
+ data.tar.gz: 9301131f39710e62a87cbb36222e5670bbc107650a5c1d2a12a6e7772c2e4754d25fcbad24396c79b6882b7119448b75fb76eb22022b50321d18102a956f3c96
data/.byebug_history ADDED
@@ -0,0 +1,20 @@
1
+ c
2
+ body
3
+ c
4
+ body = body.to_json
5
+ body.to_json
6
+ body
7
+ n
8
+ c
9
+ body.compact
10
+ body
11
+ n
12
+ c
13
+ body.to_h
14
+ body
15
+ c
16
+ body.to_h
17
+ body
18
+ c
19
+ body.to_json
20
+ body
data/.gitignore CHANGED
@@ -7,4 +7,5 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
- /.idea/
10
+ /.idea/
11
+ *.gem
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.3.1
1
+ 2.7.4
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in ruby-asaas.gemspec
4
- gemspec
4
+ gemspec
data/README.md CHANGED
@@ -0,0 +1,63 @@
1
+ # Asaas Ruby
2
+
3
+ [![Build Status](https://travis-ci.org/thiagodiniz/asaas-ruby.svg?branch=master)](https://travis-ci.org/thiagodiniz/asaas-ruby)
4
+
5
+ A biblioteca Asaas Ruby tem provê um acesso a API Rest do asaas.com.br
6
+
7
+ ## Installation
8
+
9
+ You don't need this source code unless you want to modify the gem. If you just
10
+ want to use the package, just run:
11
+
12
+ ```sh
13
+ gem install asaas-ruby
14
+ ```
15
+
16
+ Para fazer o build da gem
17
+
18
+ ```sh
19
+ gem build asaas-ruby.gemspec
20
+ ```
21
+
22
+ ### Changelog
23
+
24
+ - 0.2.24 - Add support to PIX billing type and fills missing CHANGELOG entries
25
+ - 0.2.23 - Add support to Ruby 2.7 and Rails 6.1
26
+ - 0.2.22 - Remove unecessary ActiveSupport version limit
27
+ - 0.2.21 - Add credit fields to Payment
28
+ - 0.2.20 - Adds debug flag to check responses
29
+ - 0.2.19 - Small fixes
30
+ - 0.2.18 - Account documents upload
31
+ - 0.2.17 - Add support to DEPOSIT billing type
32
+ - 0.2.16 - Wallet account tranfers
33
+ - 0.2.15 - Bank account tranfers
34
+
35
+ ### Requirements
36
+
37
+ - Ruby 2.3+.
38
+
39
+ ## Usage
40
+
41
+ ```ruby
42
+ require 'asaas-ruby'
43
+
44
+ Asaas.setup do |config|
45
+ config.token = 'token'
46
+ end
47
+
48
+ asaas_client = Asaas::Client.new()
49
+
50
+ customer = Asaas::Customer.new({name: 'Thiago Diniz', cpfCnpj: '05201932419', email: 'email@example.org'})
51
+ asaas_client.customers.create(customer)
52
+
53
+ charge = Asaas::Payment.new({
54
+ customer: customer.id,
55
+ dueDate: '2019-10-10',
56
+ billingType: 'BOLETO',
57
+ description: "Teste de boleto",
58
+ value: BigDecimal("103.54").to_f,
59
+ postalService: false
60
+ })
61
+
62
+ asaas_client.payments.create(charge)
63
+ ```
data/asaas-ruby.gemspec CHANGED
@@ -18,16 +18,17 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_development_dependency "bundler", "~> 1.12"
22
- spec.add_development_dependency "rake", "~> 10.0"
23
- spec.add_development_dependency "rspec", "~> 3.2"
21
+ spec.add_development_dependency "bundler", ">= 1.12"
22
+ spec.add_development_dependency "rake", ">= 10.0"
23
+ spec.add_development_dependency "rspec", ">= 3.2"
24
+ spec.add_development_dependency "webmock", ">= 3.7.2"
24
25
 
25
- spec.add_dependency "activesupport", "~> 4.2"
26
- spec.add_dependency "virtus", '~> 1.0', "~> 1.0.5"
26
+ spec.add_dependency "activesupport", '>= 4.2'
27
+ spec.add_dependency "virtus", '>= 1.0'
27
28
  spec.add_dependency "dry-types", '0.15.0'
28
29
  spec.add_dependency "dry-struct", '0.7.0'
29
30
  spec.add_dependency "dry-monads", '1.2.0'
30
- spec.add_dependency "typhoeus", '~> 1.0', "~> 1.0.2"
31
- spec.add_dependency "rest-client", '~> 1.8', "~> 1.8.0"
32
- spec.add_dependency "awesome_print", '~> 1.6', "~> 1.6.1"
31
+ spec.add_dependency "typhoeus", '>= 1.0'
32
+ spec.add_dependency "rest-client", '>= 1.8'
33
+ spec.add_dependency "awesome_print", '>= 1.6'
33
34
  end
@@ -14,7 +14,6 @@ module Asaas
14
14
  @route = route
15
15
  @api_version = api_version || Asaas::Configuration.api_version
16
16
  @endpoint = Asaas::Configuration.get_endpoint(api_version)
17
- puts @endpoint
18
17
  end
19
18
 
20
19
  def extract_meta(meta)
@@ -57,7 +56,7 @@ module Asaas
57
56
 
58
57
  def parse_response
59
58
  res = @response.response_code
60
- puts res
59
+ puts res if Asaas::Configuration.debug
61
60
  case @response.response_code
62
61
  when 200
63
62
  res = response_success
@@ -86,19 +85,26 @@ module Asaas
86
85
  end
87
86
 
88
87
  def request(method, params = {}, body = nil)
89
- body = body && body.respond_to?(:attributes) && body.attributes
88
+ body = body.to_h
89
+ body = body.delete_if { |k, v| v.nil? || v.to_s.empty? }
90
+ body = body.to_json
90
91
  @response = Typhoeus::Request.new(
91
92
  parse_url(params.fetch(:id, false)),
92
93
  method: method,
93
- body: body && body.delete_if { |k, v| v.nil? || v.to_s.empty? },
94
+ body: body,
94
95
  params: params,
95
- headers: { 'access_token': @token || Asaas::Configuration.token }
96
+ headers: {
97
+ 'access_token': @token || Asaas::Configuration.token,
98
+ 'Content-Type': 'application/json'
99
+ },
100
+ verbose: Asaas::Configuration.debug
96
101
  ).run
97
102
  end
98
103
 
99
104
  def response_success
100
105
  entity = nil
101
106
  hash = JSON.parse(@response.body)
107
+ puts hash if Asaas::Configuration.debug
102
108
  if hash.fetch("object", false) === "list"
103
109
  entity = Asaas::Entity::Meta.new(hash)
104
110
  else
@@ -149,4 +155,4 @@ module Asaas
149
155
  end
150
156
  end
151
157
  end
152
- end
158
+ end
@@ -0,0 +1,33 @@
1
+ module Asaas
2
+ module Api
3
+ class Document < Asaas::Api::Base
4
+
5
+ def initialize(token)
6
+ super(token, 2, '/documents')
7
+ end
8
+
9
+ def upload(document_type, group_type, file)
10
+ group_types = %w[ASAAS_ACCOUNT_OWNER PARTNER LIMITED_COMPANY]
11
+ types = %w[IDENTIFICATION SOCIAL_CONTRACT]
12
+
13
+ raise ArgumentError, 'Wrong document_type' unless types.include? document_type
14
+ raise ArgumentError, 'Wrong group_type' unless group_types.include? group_type
15
+
16
+ @response = Typhoeus.post(URI(endpoint + route).to_s,
17
+ body: {
18
+ documentType: document_type,
19
+ documentGroupType: group_type,
20
+ documentFile: file
21
+ },
22
+ headers: {
23
+ 'access_token': @token || Asaas::Configuration.token,
24
+ 'Content-Type': 'multipart/form-data'
25
+ },
26
+ verbose: Asaas::Configuration.debug
27
+ )
28
+ @response
29
+ end
30
+
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,11 @@
1
+ module Asaas
2
+ module Api
3
+ class Transfer < Asaas::Api::Base
4
+
5
+ def initialize(token, api_version)
6
+ super(token, api_version, '/transfers')
7
+ end
8
+
9
+ end
10
+ end
11
+ end
data/lib/asaas/api.rb CHANGED
@@ -8,5 +8,7 @@ module Asaas
8
8
  autoload :Payment, 'asaas/api/payment'
9
9
  autoload :Subscription, 'asaas/api/subscription'
10
10
  autoload :Webhook, 'asaas/api/webhook'
11
+ autoload :Transfer, 'asaas/api/transfer'
12
+ autoload :Document, 'asaas/api/document'
11
13
  end
12
14
  end
data/lib/asaas/client.rb CHANGED
@@ -32,9 +32,17 @@ module Asaas
32
32
  @subscriptions ||= Asaas::Api::Subscription.new(@token, @api_version)
33
33
  end
34
34
 
35
+ def transfers
36
+ @transfers ||= Asaas::Api::Transfer.new(@token, @api_version)
37
+ end
38
+
35
39
  def webhooks
36
40
  @webhooks ||= Asaas::Api::Webhook.new(@token, @api_version)
37
41
  end
38
42
 
43
+ def documents
44
+ @documents ||= Asaas::Api::Document.new(@token)
45
+ end
46
+
39
47
  end
40
48
  end
@@ -7,7 +7,7 @@ module Asaas
7
7
  }
8
8
 
9
9
  ENDPOINT_HOMOLOG = {
10
- v2: 'https://homolog.asaas.com/api/v2',
10
+ v2: 'https://sandbox.asaas.com/api/v2',
11
11
  v3: 'https://sandbox.asaas.com/api/v3',
12
12
  }
13
13
 
@@ -23,7 +23,6 @@ module Asaas
23
23
  attribute :pushNotificationUrl, String
24
24
  attribute :pushNotificationEmail, String
25
25
  attribute :bankAccount, Asaas::Entity::BankAccount
26
-
27
26
  end
28
27
  end
29
28
  end
@@ -1,6 +1,7 @@
1
1
  module Asaas
2
2
  class Account < Model
3
3
  attribute :id, Types::Coercible::String.optional.default(nil)
4
+ attribute :walletId, Types::Coercible::String.optional.default(nil)
4
5
  attribute :name, Types::Coercible::String.optional
5
6
  attribute :email, Types::Coercible::String.optional
6
7
  attribute :cpfCnpj, Types::Coercible::String.optional
@@ -11,6 +12,7 @@ module Asaas
11
12
  attribute :complement, Types::Coercible::String.optional
12
13
  attribute :province, Types::Coercible::String.optional
13
14
  attribute :postalCode, Types::Coercible::String.optional
14
- attribute :apiKey, Types::Coercible::String.optional
15
+ attribute :apiKey, Types::Coercible::String.optional.default(nil)
16
+ attribute :companyType, Types::Coercible::String.optional.default(nil)
15
17
  end
16
18
  end
@@ -0,0 +1,15 @@
1
+ module Asaas
2
+ class Notification < Model
3
+ transform_keys(&:to_sym)
4
+
5
+ attribute :id, Types::Coercible::String
6
+ attribute :customer, Types::Coercible::String
7
+ attribute :event, Types::Coercible::String
8
+ attribute :scheduleOffset, Types::Integer.optional.default(nil)
9
+ attribute :emailEnabledForProvider, Types::Bool.optional.default(false)
10
+ attribute :smsEnabledForProvider, Types::Bool.optional.default(false)
11
+ attribute :emailEnabledForCustomer, Types::Bool.optional.default(true)
12
+ attribute :smsEnabledForCustomer, Types::Bool.optional.default(false)
13
+ attribute :enabled, Types::Bool.default(false)
14
+ end
15
+ end
@@ -1,6 +1,6 @@
1
1
  module Asaas
2
2
  class Payment < Model
3
- BillingTypes = Types::Strict::String.enum('BOLETO', 'CREDIT_CARD', 'UNDEFINED', 'TRANSFER')
3
+ BillingTypes = Types::Strict::String.enum('BOLETO', 'CREDIT_CARD', 'UNDEFINED', 'TRANSFER', 'DEPOSIT', 'PIX')
4
4
  Status = Types::Strict::String.enum('PENDING', 'RECEIVED', 'CONFIRMED', 'OVERDUE', 'REFUNDED', 'RECEIVED_IN_CASH', 'REFUND_REQUESTED', 'CHARGEBACK_DISPUTE', 'AWAITING_CHARGEBACK_REVERSAL')
5
5
 
6
6
  attribute :id, Types::Coercible::String.optional.default(nil)
@@ -30,5 +30,7 @@ module Asaas
30
30
  attribute :invoiceNumber, Types::Coercible::String.optional.default(nil)
31
31
  attribute :deleted, Types::Coercible::String.optional.default(nil)
32
32
 
33
+ attribute :creditDate, Types::Coercible::String.optional.default(nil)
34
+ attribute :estimatedCreditDate, Types::Coercible::String.optional.default(nil)
33
35
  end
34
- end
36
+ end
@@ -0,0 +1,22 @@
1
+ module Asaas
2
+ class Transfer < Model
3
+ Status = Types::Strict::String.enum('PENDING', 'BANK_PROCESSING', 'DONE',
4
+ 'CANCELLED', 'FAILED')
5
+ AccountType = Types::Strict::String.enum('BANK_ACCOUNT','ASAAS_ACCOUNT')
6
+
7
+ attribute :id, Types::Coercible::String.optional.default(nil)
8
+ attribute :dateCreated, Types::Coercible::String.optional.default(nil)
9
+ attribute :value, Types::Coercible::Decimal.optional.default(nil)
10
+ attribute :netValue, Types::Coercible::Decimal.optional.default(nil)
11
+ attribute :transferFee, Types::Coercible::Decimal.optional.default(nil)
12
+ attribute :status, Status.optional.default(nil)
13
+ attribute :effectiveDate, Types::Coercible::String.optional.default(nil)
14
+ attribute :scheduleDate, Types::Coercible::String.optional.default(nil)
15
+ attribute :authorized, Types::Coercible::String.optional.default(nil)
16
+ attribute :transactionReceiptUrl, Types::Coercible::String.optional.default(nil)
17
+ attribute :bankAccount, Types::Coercible::Hash.optional.default(nil)
18
+ attribute :type, AccountType.optional.default(nil)
19
+ attribute :walletId, Types::Coercible::String.optional.default(nil)
20
+ attribute :account, Types::Coercible::Hash.optional.default(nil)
21
+ end
22
+ end
data/lib/asaas/types.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  Dry::Types.load_extensions(:maybe)
2
2
 
3
3
  module Types
4
- include Dry::Types.module
4
+ include Dry::Types(default: :nominal)
5
5
  end
data/lib/asaas/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Asaas
2
- VERSION = "0.2.12"
2
+ VERSION = '0.2.25'
3
3
  end
data/lib/asaas-ruby.rb CHANGED
@@ -19,12 +19,14 @@ module Asaas
19
19
 
20
20
  autoload :Model, 'asaas/models/model'
21
21
  autoload :Customer, 'asaas/models/customer'
22
+ autoload :Notification, 'asaas/models/notification'
22
23
  autoload :Payment, 'asaas/models/payment'
23
24
  autoload :Discount, 'asaas/models/discount'
24
25
  autoload :Interest, 'asaas/models/interest'
25
26
  autoload :Fine, 'asaas/models/fine'
26
27
  autoload :Webhook, 'asaas/models/webhook'
27
28
  autoload :Account, 'asaas/models/account'
29
+ autoload :Transfer, 'asaas/models/transfer'
28
30
 
29
31
  class << self
30
32
 
metadata CHANGED
@@ -1,91 +1,99 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asaas-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.12
4
+ version: 0.2.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcos Junior
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-07-17 00:00:00.000000000 Z
11
+ date: 2022-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.12'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.12'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '10.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '3.2'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: webmock
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 3.7.2
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 3.7.2
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: activesupport
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
- - - "~>"
73
+ - - ">="
60
74
  - !ruby/object:Gem::Version
61
75
  version: '4.2'
62
76
  type: :runtime
63
77
  prerelease: false
64
78
  version_requirements: !ruby/object:Gem::Requirement
65
79
  requirements:
66
- - - "~>"
80
+ - - ">="
67
81
  - !ruby/object:Gem::Version
68
82
  version: '4.2'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: virtus
71
85
  requirement: !ruby/object:Gem::Requirement
72
86
  requirements:
73
- - - "~>"
87
+ - - ">="
74
88
  - !ruby/object:Gem::Version
75
89
  version: '1.0'
76
- - - "~>"
77
- - !ruby/object:Gem::Version
78
- version: 1.0.5
79
90
  type: :runtime
80
91
  prerelease: false
81
92
  version_requirements: !ruby/object:Gem::Requirement
82
93
  requirements:
83
- - - "~>"
94
+ - - ">="
84
95
  - !ruby/object:Gem::Version
85
96
  version: '1.0'
86
- - - "~>"
87
- - !ruby/object:Gem::Version
88
- version: 1.0.5
89
97
  - !ruby/object:Gem::Dependency
90
98
  name: dry-types
91
99
  requirement: !ruby/object:Gem::Requirement
@@ -132,62 +140,44 @@ dependencies:
132
140
  name: typhoeus
133
141
  requirement: !ruby/object:Gem::Requirement
134
142
  requirements:
135
- - - "~>"
143
+ - - ">="
136
144
  - !ruby/object:Gem::Version
137
145
  version: '1.0'
138
- - - "~>"
139
- - !ruby/object:Gem::Version
140
- version: 1.0.2
141
146
  type: :runtime
142
147
  prerelease: false
143
148
  version_requirements: !ruby/object:Gem::Requirement
144
149
  requirements:
145
- - - "~>"
150
+ - - ">="
146
151
  - !ruby/object:Gem::Version
147
152
  version: '1.0'
148
- - - "~>"
149
- - !ruby/object:Gem::Version
150
- version: 1.0.2
151
153
  - !ruby/object:Gem::Dependency
152
154
  name: rest-client
153
155
  requirement: !ruby/object:Gem::Requirement
154
156
  requirements:
155
- - - "~>"
157
+ - - ">="
156
158
  - !ruby/object:Gem::Version
157
159
  version: '1.8'
158
- - - "~>"
159
- - !ruby/object:Gem::Version
160
- version: 1.8.0
161
160
  type: :runtime
162
161
  prerelease: false
163
162
  version_requirements: !ruby/object:Gem::Requirement
164
163
  requirements:
165
- - - "~>"
164
+ - - ">="
166
165
  - !ruby/object:Gem::Version
167
166
  version: '1.8'
168
- - - "~>"
169
- - !ruby/object:Gem::Version
170
- version: 1.8.0
171
167
  - !ruby/object:Gem::Dependency
172
168
  name: awesome_print
173
169
  requirement: !ruby/object:Gem::Requirement
174
170
  requirements:
175
- - - "~>"
171
+ - - ">="
176
172
  - !ruby/object:Gem::Version
177
173
  version: '1.6'
178
- - - "~>"
179
- - !ruby/object:Gem::Version
180
- version: 1.6.1
181
174
  type: :runtime
182
175
  prerelease: false
183
176
  version_requirements: !ruby/object:Gem::Requirement
184
177
  requirements:
185
- - - "~>"
178
+ - - ">="
186
179
  - !ruby/object:Gem::Version
187
180
  version: '1.6'
188
- - - "~>"
189
- - !ruby/object:Gem::Version
190
- version: 1.6.1
191
181
  description: Asass.com Ruby API Wrapper
192
182
  email:
193
183
  - marcos@maini.com.br
@@ -195,6 +185,7 @@ executables: []
195
185
  extensions: []
196
186
  extra_rdoc_files: []
197
187
  files:
188
+ - ".byebug_history"
198
189
  - ".gitignore"
199
190
  - ".rspec"
200
191
  - ".ruby-gemset"
@@ -211,9 +202,11 @@ files:
211
202
  - lib/asaas/api/base.rb
212
203
  - lib/asaas/api/city.rb
213
204
  - lib/asaas/api/customer.rb
205
+ - lib/asaas/api/document.rb
214
206
  - lib/asaas/api/notification.rb
215
207
  - lib/asaas/api/payment.rb
216
208
  - lib/asaas/api/subscription.rb
209
+ - lib/asaas/api/transfer.rb
217
210
  - lib/asaas/api/webhook.rb
218
211
  - lib/asaas/client.rb
219
212
  - lib/asaas/configuration.rb
@@ -236,14 +229,16 @@ files:
236
229
  - lib/asaas/models/fine.rb
237
230
  - lib/asaas/models/interest.rb
238
231
  - lib/asaas/models/model.rb
232
+ - lib/asaas/models/notification.rb
239
233
  - lib/asaas/models/payment.rb
234
+ - lib/asaas/models/transfer.rb
240
235
  - lib/asaas/models/webhook.rb
241
236
  - lib/asaas/types.rb
242
237
  - lib/asaas/version.rb
243
238
  homepage: http://github.com/marcosgugs/asaas-ruby
244
239
  licenses: []
245
240
  metadata: {}
246
- post_install_message:
241
+ post_install_message:
247
242
  rdoc_options: []
248
243
  require_paths:
249
244
  - lib
@@ -258,9 +253,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
258
253
  - !ruby/object:Gem::Version
259
254
  version: '0'
260
255
  requirements: []
261
- rubyforge_project:
262
- rubygems_version: 2.7.9
263
- signing_key:
256
+ rubygems_version: 3.2.17
257
+ signing_key:
264
258
  specification_version: 4
265
259
  summary: Asass.com Ruby API Wrapper
266
260
  test_files: []