asaas-ruby 0.2.10 → 0.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/asaas-ruby.rb +1 -0
- data/lib/asaas/models/account.rb +15 -0
- data/lib/asaas/version.rb +1 -1
- metadata +4 -10
- data/asaas-ruby-0.1.0.gem +0 -0
- data/asaas-ruby-0.1.1.gem +0 -0
- data/asaas-ruby-0.1.2.gem +0 -0
- data/asaas-ruby-0.1.3.gem +0 -0
- data/asaas-ruby-0.1.4.gem +0 -0
- data/asaas-ruby-0.1.5.gem +0 -0
- data/asaas-ruby-0.1.6.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d7e0b3037a41e77fbc42ebe3daed47b520ad420f2c13e533a44038895b2f4c8
|
|
4
|
+
data.tar.gz: d9e02994be434ce3610c70c47ccb67e283c2ec24a062c4c07819891aada41c8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12b5670f1d632fb559b27688e4633e3e8bb85b8998bec8d42b70bd8fdc1f20e1a8a6626d6f77d8a99e44a80e34422a3f5bcac9e0b89c1a1fe38d357230442cdd
|
|
7
|
+
data.tar.gz: 83bd8e2ab0dad4e017df1439b3e5590863fa8726e9717de5095dc3050c94ce9f24957181b004fd216049768927145f14032c84e80e5ab811b022f2f04de2e142
|
data/lib/asaas-ruby.rb
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module Asaas
|
|
2
|
+
class Account < Model
|
|
3
|
+
attribute :id, Types::Coercible::String.optional.default(nil)
|
|
4
|
+
attribute :name, Types::Coercible::String.optional
|
|
5
|
+
attribute :email, Types::Coercible::String.optional
|
|
6
|
+
attribute :cpfCnpj, Types::Coercible::String.optional
|
|
7
|
+
attribute :phone, Types::Coercible::String.optional
|
|
8
|
+
attribute :mobilePhone, Types::Coercible::String.optional
|
|
9
|
+
attribute :address, Types::Coercible::String.optional
|
|
10
|
+
attribute :addressNumber, Types::Coercible::String.optional
|
|
11
|
+
attribute :complement, Types::Coercible::String.optional
|
|
12
|
+
attribute :province, Types::Coercible::String.optional
|
|
13
|
+
attribute :postalCode, Types::Coercible::String.optional
|
|
14
|
+
end
|
|
15
|
+
end
|
data/lib/asaas/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: asaas-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marcos Junior
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-07-
|
|
11
|
+
date: 2019-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -202,13 +202,6 @@ files:
|
|
|
202
202
|
- Gemfile
|
|
203
203
|
- README.md
|
|
204
204
|
- Rakefile
|
|
205
|
-
- asaas-ruby-0.1.0.gem
|
|
206
|
-
- asaas-ruby-0.1.1.gem
|
|
207
|
-
- asaas-ruby-0.1.2.gem
|
|
208
|
-
- asaas-ruby-0.1.3.gem
|
|
209
|
-
- asaas-ruby-0.1.4.gem
|
|
210
|
-
- asaas-ruby-0.1.5.gem
|
|
211
|
-
- asaas-ruby-0.1.6.gem
|
|
212
205
|
- asaas-ruby.gemspec
|
|
213
206
|
- bin/console
|
|
214
207
|
- bin/setup
|
|
@@ -237,6 +230,7 @@ files:
|
|
|
237
230
|
- lib/asaas/entity/notification.rb
|
|
238
231
|
- lib/asaas/entity/payment.rb
|
|
239
232
|
- lib/asaas/entity/subscription.rb
|
|
233
|
+
- lib/asaas/models/account.rb
|
|
240
234
|
- lib/asaas/models/customer.rb
|
|
241
235
|
- lib/asaas/models/discount.rb
|
|
242
236
|
- lib/asaas/models/fine.rb
|
|
@@ -265,7 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
265
259
|
version: '0'
|
|
266
260
|
requirements: []
|
|
267
261
|
rubyforge_project:
|
|
268
|
-
rubygems_version: 2.7.
|
|
262
|
+
rubygems_version: 2.7.9
|
|
269
263
|
signing_key:
|
|
270
264
|
specification_version: 4
|
|
271
265
|
summary: Asass.com Ruby API Wrapper
|
data/asaas-ruby-0.1.0.gem
DELETED
|
Binary file
|
data/asaas-ruby-0.1.1.gem
DELETED
|
Binary file
|
data/asaas-ruby-0.1.2.gem
DELETED
|
Binary file
|
data/asaas-ruby-0.1.3.gem
DELETED
|
Binary file
|
data/asaas-ruby-0.1.4.gem
DELETED
|
Binary file
|
data/asaas-ruby-0.1.5.gem
DELETED
|
Binary file
|
data/asaas-ruby-0.1.6.gem
DELETED
|
Binary file
|