cobrato-client 0.5.0 → 0.6.0

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
  SHA1:
3
- metadata.gz: 7c6f192d8923865e3956adef502ce52f07184670
4
- data.tar.gz: b7c18ff11cb41f5d09537bb0da725fc1ad2d7a99
3
+ metadata.gz: e60c84ec40e2d1a142e4961eb11a09b690ed5517
4
+ data.tar.gz: ca090385e72b838036bc343de6a463e49a96679c
5
5
  SHA512:
6
- metadata.gz: 28b72496784d53f61fec9ad6e25f83c97357eb1037d9530132b86981050d7eddedb01f65dd39692206cb30168b4007eeecc598e6e733087a4e5ffcf19696517a
7
- data.tar.gz: d57e1d4f5b20262f1fd7a8d736dc7030961ea414efa2f4886393067c6ba79331dece18d02c0d711d7b180024bb03c0f46fe3713e83c4d8046be723022627c642
6
+ metadata.gz: 8555f0d14d3e31380a424c7ba3ddc8581cb74ffe76296501c5fb0e02c6c5ec2258a02491e9fe06a26b6b9d1b93b9a9dec80fc4ad458889687e07749eabff3e70
7
+ data.tar.gz: 43066a1d1d45edc45cf3f1b81720dafcbb4aec4cf99c10ff25ec7af0da798e5e64efd7fe81e2dede9f8bc26c42f4d54f411e30b2be326ec44b80e016da11d3f0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.6.0
4
+
5
+ - Attributes `interest_amount_per_month`, `mulct_type`, `mulct_value` were moved from ChargeConfig to Charge.
6
+
3
7
  ## v0.5.0
4
8
 
5
9
  - The `Charge#generate_token ` was removed and `CreditCard#created_as_reusable` was added with the same goal.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cobrato-client (0.5.0)
4
+ cobrato-client (0.6.0)
5
5
  multi_json (~> 1.11.1)
6
6
  typhoeus (~> 0.7.2)
7
7
  virtus (~> 1.0.5)
@@ -35,6 +35,9 @@ module Cobrato
35
35
  attribute :received_at, Date
36
36
  attribute :registrable, Boolean
37
37
  attribute :registration_status, String
38
+ attribute :interest_amount_per_month, Decimal
39
+ attribute :mulct_type, String
40
+ attribute :mulct_value, Decimal
38
41
 
39
42
  # payment gateway specifics
40
43
  attribute :credit_card_id, Integer
@@ -19,9 +19,6 @@ module Cobrato
19
19
  attribute :initial_remittance_number, Integer
20
20
  attribute :current_remittance_number, Integer
21
21
  attribute :remittance_cnab_pattern, Integer
22
- attribute :interest_amount_per_month, Decimal
23
- attribute :mulct_type, String
24
- attribute :mulct_value, Decimal
25
22
  attribute :transmission_code, String
26
23
 
27
24
  # payment gateway specifics
@@ -1,3 +1,3 @@
1
1
  module Cobrato
2
- VERSION = '0.5.0'
2
+ VERSION = '0.6.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cobrato-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcio Ricardo Santos