cobrato-client 0.15.0 → 0.16.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 75f70f86ff08ef06b9956041eec56f85997b082a
4
- data.tar.gz: 26c318a0d022dd9b7bfbed747a21b09633f47e44
3
+ metadata.gz: ff78832a8015f17587d8f16331f31f0ee3ecce94
4
+ data.tar.gz: 1fb46e76ebdf1ed463c78dc34b82519ccef82ece
5
5
  SHA512:
6
- metadata.gz: aaf4450a379a10b96f0a45ab134f336ace76ad1c9373556e16f62155225ce91233bf7f8dbce63853f1db066bd984ef8f8a2b61af893ece6e4827881d6f5acab1
7
- data.tar.gz: 8f639cfeb780a83cf6445fa99568b9df11cc4f78b11d7a54fecd6cca171233005a71964f9e29d03a5feb3823fc7c599c53f4e3629d24893a46c2557850df57ec
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cobrato-client (0.15.0)
4
+ cobrato-client (0.16.0)
5
5
  multi_json (~> 1.11.2)
6
6
  typhoeus (~> 0.8.0)
7
7
  virtus (~> 1.0.5)
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Cobrato
2
- VERSION = '0.15.0'
2
+ VERSION = '0.16.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.15.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-14 00:00:00.000000000 Z
13
+ date: 2016-12-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: typhoeus