tiss-ruby 0.2.1 → 0.2.2

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
- SHA256:
3
- metadata.gz: 1c1084a84cfc838fe940278e7987b51aefad3a7462f61637cb1e1b8484ada221
4
- data.tar.gz: 38fc920727b2a793468e5847cf8c0ed947ce61ea13dee5e22e9f1cd2eb8de2e7
2
+ SHA1:
3
+ metadata.gz: a99ba225352436a46af77697b4d6cc26dc0abe8a
4
+ data.tar.gz: 061d639e8b2d21726acc10d6e8d13b1066663128
5
5
  SHA512:
6
- metadata.gz: 2b811b199b9856fe33333f53334b5e4b98e82e5611e6f8c4153c1412af8ca36e88f6e5c3231c70c92944992a5f658429b28a6df8c3ad310e34fe25ed94f5457a
7
- data.tar.gz: 4eb68f771d6725b91dc7376c2364c755850df16e8d2328932d1968817b199ffdffeb6ec4f0324e7f6ffc0bb77545ab07b9d666469c2e71c761367af3caa794cb
6
+ metadata.gz: d6e2d1df750872f81ef522b322b150cae5f9773833ae9a1521bd32cb12fb1e0829c4782a48d47646f48aa28ebfe203e480569f8a01a8f3713a80aef3a8fd3b82
7
+ data.tar.gz: 00d8eb419ab75ea2f4609caaccb582b8ccfb2eb7b91990d5fef87c8f18820acced3e9d2d28587c9461d7dd61795f5da6546a90081ef9ddca06a2c856a0927a05
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tiss-ruby (0.2.1)
4
+ tiss-ruby (0.2.2)
5
5
  activemodel
6
6
  activesupport
7
7
  dry-configurable
@@ -10,9 +10,9 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activemodel (5.2.4.1)
14
- activesupport (= 5.2.4.1)
15
- activesupport (5.2.4.1)
13
+ activemodel (5.2.7.1)
14
+ activesupport (= 5.2.7.1)
15
+ activesupport (5.2.7.1)
16
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
17
17
  i18n (>= 0.7, < 2)
18
18
  minitest (~> 5.1)
@@ -22,7 +22,7 @@ GEM
22
22
  binding_of_caller (0.8.0)
23
23
  debug_inspector (>= 0.0.1)
24
24
  coderay (1.1.2)
25
- concurrent-ruby (1.1.5)
25
+ concurrent-ruby (1.1.10)
26
26
  coolline (0.5.0)
27
27
  unicode_utils (~> 1.4)
28
28
  debug_inspector (0.0.3)
@@ -32,14 +32,14 @@ GEM
32
32
  dry-core (~> 0.4, >= 0.4.7)
33
33
  dry-core (0.4.9)
34
34
  concurrent-ruby (~> 1.0)
35
- i18n (1.8.2)
35
+ i18n (1.10.0)
36
36
  concurrent-ruby (~> 1.0)
37
37
  interception (0.5)
38
38
  jaro_winkler (1.5.4)
39
39
  method_source (0.9.2)
40
40
  mini_portile2 (2.4.0)
41
- minitest (5.14.0)
42
- nokogiri (1.10.7)
41
+ minitest (5.15.0)
42
+ nokogiri (1.10.10)
43
43
  mini_portile2 (~> 2.4.0)
44
44
  parallel (1.19.1)
45
45
  parser (2.7.0.2)
@@ -84,7 +84,7 @@ GEM
84
84
  rubocop (>= 0.68.1)
85
85
  ruby-progressbar (1.10.1)
86
86
  thread_safe (0.3.6)
87
- tzinfo (1.2.6)
87
+ tzinfo (1.2.9)
88
88
  thread_safe (~> 0.1)
89
89
  unicode-display_width (1.6.1)
90
90
  unicode_utils (1.4.0)
@@ -108,4 +108,4 @@ DEPENDENCIES
108
108
  tiss-ruby!
109
109
 
110
110
  BUNDLED WITH
111
- 1.16.2
111
+ 1.17.3
@@ -66,7 +66,8 @@ module Tiss
66
66
  '3.03.01' => CR_TYPE_MAP_V3,
67
67
  '3.03.02' => CR_TYPE_MAP_V3,
68
68
  '3.03.03' => CR_TYPE_MAP_V3,
69
- '3.04.00' => CR_TYPE_MAP_V3
69
+ '3.04.00' => CR_TYPE_MAP_V3,
70
+ '3.05.00' => CR_TYPE_MAP_V3
70
71
  }
71
72
 
72
73
  ENVIO_LOTE_GUIAS = "ENVIO_LOTE_GUIAS"
data/lib/tiss/tiss.rb CHANGED
@@ -18,7 +18,7 @@ module Tiss
18
18
  extend Dry::Configurable
19
19
 
20
20
  setting :default_version, '3_02_00'
21
- setting :available_versions, %w[3_02_00 3_02_01 3_02_02 3_03_01 3_03_02 3_03_03 3_04_00]
21
+ setting :available_versions, %w[3_02_00 3_02_01 3_02_02 3_03_01 3_03_02 3_03_03 3_04_00 3_05_00]
22
22
 
23
23
  # TODO: Refactor this
24
24
  class ConvertFromXsd
data/lib/tiss/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tiss
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiss-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcos Junior
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-14 00:00:00.000000000 Z
11
+ date: 2022-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -547,7 +547,7 @@ homepage: https://github.com/marcosgugs/tiss-ruby
547
547
  licenses:
548
548
  - MIT
549
549
  metadata: {}
550
- post_install_message:
550
+ post_install_message:
551
551
  rdoc_options: []
552
552
  require_paths:
553
553
  - lib
@@ -562,9 +562,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
562
562
  - !ruby/object:Gem::Version
563
563
  version: '0'
564
564
  requirements: []
565
- rubyforge_project:
566
- rubygems_version: 2.7.7
567
- signing_key:
565
+ rubyforge_project:
566
+ rubygems_version: 2.5.1
567
+ signing_key:
568
568
  specification_version: 4
569
569
  summary: Cria o XML do TISS
570
570
  test_files: []