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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/cobrato/entities/charge.rb +3 -0
- data/lib/cobrato/entities/charge_config.rb +0 -3
- data/lib/cobrato/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e60c84ec40e2d1a142e4961eb11a09b690ed5517
|
4
|
+
data.tar.gz: ca090385e72b838036bc343de6a463e49a96679c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
@@ -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
|
data/lib/cobrato/version.rb
CHANGED