nfse_issnet 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/lib/nfse_issnet/entities/tc_endereco.rb +6 -6
- data/lib/nfse_issnet/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9641d0794b56392096f54f2519327edfe24ab3301ff5206cbd0bd837fc8e3621
|
4
|
+
data.tar.gz: 34225d8fb0051e52c098501b6d3bfeac8f406e0f0b5a2810dda30c43eb5a6964
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91e695831adc6062d06ff7b8958735a318faa960c2c7ff385c3ed81ff70f2ec6eb8cdb214ba9599f6757767e1201041a67190fbe7b687955c24de11cc4dd8688
|
7
|
+
data.tar.gz: 17a1672665958e50f2c2815c882fecd85c9760d1969822ebe8b4727f669f7d909e7abcdf006865ef9f20fb44cc224dfd9b6ad0432ebff1864ce7858083375092
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
nfse_issnet (0.1.
|
4
|
+
nfse_issnet (0.1.4)
|
5
5
|
dry-struct (= 0.7.0)
|
6
6
|
dry-validation (= 0.13.0)
|
7
7
|
ox
|
@@ -28,7 +28,7 @@ GEM
|
|
28
28
|
dry-configurable (0.8.3)
|
29
29
|
concurrent-ruby (~> 1.0)
|
30
30
|
dry-core (~> 0.4, >= 0.4.7)
|
31
|
-
dry-container (0.7.
|
31
|
+
dry-container (0.7.2)
|
32
32
|
concurrent-ruby (~> 1.0)
|
33
33
|
dry-configurable (~> 0.1, >= 0.1.3)
|
34
34
|
dry-core (0.4.8)
|
@@ -1,13 +1,13 @@
|
|
1
1
|
module NfseIssnet
|
2
2
|
module Entities
|
3
3
|
class TcEndereco < BaseEntity
|
4
|
-
attribute? :endereco, Types::String.constrained(max_size: 125)
|
5
|
-
attribute? :cep, Types::Coercible::Integer.constrained(lteq: ('9' * 8).to_i)
|
6
|
-
attribute? :numero, Types::String.constrained(max_size: 10)
|
7
|
-
attribute? :complemento, Types::String.constrained(max_size: 60)
|
8
|
-
attribute? :bairro, Types::String.constrained(max_size: 60)
|
4
|
+
attribute? :endereco, Types::String.constrained(max_size: 125).optional
|
5
|
+
attribute? :cep, Types::Coercible::Integer.constrained(lteq: ('9' * 8).to_i).optional
|
6
|
+
attribute? :numero, Types::String.constrained(max_size: 10).optional
|
7
|
+
attribute? :complemento, Types::String.constrained(max_size: 60).optional
|
8
|
+
attribute? :bairro, Types::String.constrained(max_size: 60).optional
|
9
9
|
attribute? :cidade, Types::String.constrained(max_size: 7)
|
10
|
-
attribute? :estado, Types::String.constrained(max_size: 2)
|
10
|
+
attribute? :estado, Types::String.constrained(max_size: 2).optional
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
data/lib/nfse_issnet/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nfse_issnet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eduardo Scottini
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: savon
|
@@ -292,7 +292,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
292
292
|
- !ruby/object:Gem::Version
|
293
293
|
version: '0'
|
294
294
|
requirements: []
|
295
|
-
|
295
|
+
rubyforge_project:
|
296
|
+
rubygems_version: 2.7.8
|
296
297
|
signing_key:
|
297
298
|
specification_version: 4
|
298
299
|
summary: Geração e consulta de NFS-e.
|