cobrato-client 0.15.0 → 0.16.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 +12 -0
- data/Gemfile.lock +1 -1
- data/lib/cobrato/entities/charge.rb +5 -0
- data/lib/cobrato/entities/charge_template.rb +3 -0
- data/lib/cobrato/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff78832a8015f17587d8f16331f31f0ee3ecce94
|
4
|
+
data.tar.gz: 1fb46e76ebdf1ed463c78dc34b82519ccef82ece
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bfee4a5ecfc6bb66c4f9de56a01342d1b96315efacc39e1becac1d091589836359a233d9130a76dc52a20209448890fd09ad849fe6f59e80e132f40ce9c8c67
|
7
|
+
data.tar.gz: 203fef09872f8e5b2558353f393c72d735f9d7251f4ce3d87396a0f80e7fbbfcd9288f9ba1c470a0a0859151e008f9ca8b3d1463dea9e6fa262dbd4be1d40909
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,18 @@
|
|
2
2
|
|
3
3
|
## Next version
|
4
4
|
|
5
|
+
## v0.16.0
|
6
|
+
|
7
|
+
- Add `auto_send_billet` to Charge entity
|
8
|
+
- Add `email_sender_name` to Charge entity
|
9
|
+
- Add `email_subject` to Charge entity
|
10
|
+
- Add `email_text` to Charge entity
|
11
|
+
- Add `charge_template_id` to Charge entity
|
12
|
+
|
13
|
+
- Add `email_sender_name` to ChargeTemplate entity
|
14
|
+
- Add `email_subject` to ChargeTemplate entity
|
15
|
+
- Add `email_text` to ChargeTemplate entity
|
16
|
+
|
5
17
|
## v.15.0
|
6
18
|
|
7
19
|
- Add `url` method to Entities.
|
data/Gemfile.lock
CHANGED
@@ -45,6 +45,11 @@ module Cobrato
|
|
45
45
|
attribute :mulct_type, String
|
46
46
|
attribute :mulct_value, Decimal
|
47
47
|
attribute :payment_tax, Decimal
|
48
|
+
attribute :auto_send_billet, Boolean
|
49
|
+
attribute :email_sender_name, String
|
50
|
+
attribute :email_subject, String
|
51
|
+
attribute :email_text, String
|
52
|
+
attribute :charge_template_id, Integer
|
48
53
|
|
49
54
|
# payment gateway specifics
|
50
55
|
attribute :credit_card_id, Integer
|
@@ -13,6 +13,9 @@ module Cobrato
|
|
13
13
|
attribute :interest_amount_per_month, Decimal
|
14
14
|
attribute :mulct_type, String
|
15
15
|
attribute :mulct_value, Decimal
|
16
|
+
attribute :email_sender_name, String
|
17
|
+
attribute :email_subject, String
|
18
|
+
attribute :email_text, String
|
16
19
|
end
|
17
20
|
end
|
18
21
|
end
|
data/lib/cobrato/version.rb
CHANGED
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.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcio Ricardo Santos
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-12-
|
13
|
+
date: 2016-12-22 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: typhoeus
|