emites-client 0.1.3 → 0.1.4

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: d7cbe4dbf6f110f1fe472e4d4047bc5890ad5342
4
- data.tar.gz: 419217d1fe607d3c9d31868ffba11ef2b3b56f97
3
+ metadata.gz: 1b761dcd8e35c8381bd5fd5160caa5c7294edf8c
4
+ data.tar.gz: bc481416ae07566bc94d21bd3e34fe5b680f01d5
5
5
  SHA512:
6
- metadata.gz: 99cc2b635e0382781405f532fe19cdcaef6c312af87e158a3d66b4a5a29f7a364559fe226760604b2b2739fdf96db31d0ee8778083bb86c195398ad08ed1e639
7
- data.tar.gz: fdd742ea609c82695f13dd59e0780e1f8f14edd7c2041891e322053abbe8e0a319257c221fdcfc8d79f4682c9768e3983b6f2d821fa176aa43184d7bbe37eea0
6
+ metadata.gz: 2f3ffa85ef123a6e9a42f388e67fe9e963d3231df8010c661f73151f6cbd9ac489c759943e820c0504a41e001dca0c7137bfce51a505eba3c79576c1faace2be
7
+ data.tar.gz: 425806fa5ebb15f5f90102dc884e774ae4e158b8895217928d9466103b8fd481b3c719a8baa2439737de8ea46e2801e13cdfd8541fd5e1825d8eebf7ef827bbc
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Next version
4
4
 
5
+ ## v0.1.4
6
+
7
+ - Adds `pis_rate`, `ir_rate`, `inss_rate`, `retained_iss_rate`, `other_retentions_rate`, `cofins_rate` and `csll_rate` attributes on Service entity
8
+
5
9
  ## v0.1.3
6
10
 
7
- - Adds `pis_value`, `ir_value`, `inss_value`, `retained_iss_value`, `other_retentions_value`, `cofins_value` and `csll_value` attributes on Service entity
11
+ - Adds `pis_value`, `ir_value`, `inss_value`, `retained_iss_value`, `other_retentions_value`, `cofins_value` and `csll_value` attributes on Service entity
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- emites-client (0.1.3)
4
+ emites-client (0.1.4)
5
5
  multi_json (~> 1.11)
6
6
  typhoeus (~> 0.8)
7
7
  virtus (~> 1.0)
@@ -25,12 +25,19 @@ module Emites
25
25
  attribute :other_retentions_percentage, Decimal, precision: 5, scale: 2
26
26
  attribute :retained_iss_percentage, Decimal, precision: 5, scale: 2
27
27
  attribute :unconditioned_discount_percentage, Decimal, precision: 5, scale: 2
28
+ attribute :pis_rate, Decimal, precision: 16, scale: 2
28
29
  attribute :pis_value, Decimal, precision: 16, scale: 2
30
+ attribute :ir_rate, Decimal, precision: 16, scale: 2
29
31
  attribute :ir_value, Decimal, precision: 16, scale: 2
32
+ attribute :inss_rate, Decimal, precision: 16, scale: 2
30
33
  attribute :inss_value, Decimal, precision: 16, scale: 2
34
+ attribute :retained_iss_rate, Decimal, precision: 16, scale: 2
31
35
  attribute :retained_iss_value, Decimal, precision: 16, scale: 2
36
+ attribute :other_retentions_rate, Decimal, precision: 16, scale: 2
32
37
  attribute :other_retentions_value, Decimal, precision: 16, scale: 2
38
+ attribute :cofins_rate, Decimal, precision: 16, scale: 2
33
39
  attribute :cofins_value, Decimal, precision: 16, scale: 2
40
+ attribute :csll_rate, Decimal, precision: 16, scale: 2
34
41
  attribute :csll_value, Decimal, precision: 16, scale: 2
35
42
  end
36
43
  end
@@ -1,3 +1,3 @@
1
1
  module Emites
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -12,7 +12,10 @@ describe Emites::Entities::Service do
12
12
  :service_item_code, :city_tax_code, :cnae_code,
13
13
  :description, :city_code, :nfse_liquid_amount,
14
14
  :liquid_amount, :other_retentions_percentage, :retained_iss_percentage,
15
- :unconditioned_discount_percentage, :pis_value, :ir_value, :inss_value,
16
- :retained_iss_value, :other_retentions_value, :cofins_value, :csll_value
15
+ :unconditioned_discount_percentage, :pis_rate, :pis_value,
16
+ :ir_rate, :ir_value, :inss_rate, :inss_value,
17
+ :retained_iss_rate, :retained_iss_value,
18
+ :other_retentions_rate, :other_retentions_value,
19
+ :cofins_rate, :cofins_value, :csll_rate, :csll_value
17
20
  ]
18
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emites-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leandro Thimóteo
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2017-07-19 00:00:00.000000000 Z
17
+ date: 2018-03-20 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: typhoeus
@@ -371,7 +371,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
371
371
  version: '0'
372
372
  requirements: []
373
373
  rubyforge_project:
374
- rubygems_version: 2.5.1
374
+ rubygems_version: 2.5.2.1
375
375
  signing_key:
376
376
  specification_version: 4
377
377
  summary: Official Ruby client for the Emites API.