doc_validator 1.1.4 → 1.2.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 +4 -4
- data/lib/doc_validator/cnpj.rb +9 -5
- data/lib/doc_validator/cpf.rb +9 -5
- data/lib/doc_validator/rg.rb +9 -5
- data/lib/doc_validator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 283b38317f7ed58f71f03e5c20e92ee3db7945046e896e7c76bc812ff9be06a8
|
4
|
+
data.tar.gz: 6db7ac0497d7d669edf54da5cd0f9b1797c9c3550d73a09528399db695525768
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a7359e5a927581e028193504fbda2c45c0eff4bb3746ca4fa3919a9f93918002269e0d2ea98f9a7786d504a03ae29db1fe4b8725d9eb9401c21dc8668a2a356
|
7
|
+
data.tar.gz: ce2827a99ba4f8a4d235e5f953e7c116df43d888a08f36c8db8f403aca43525e8a4b25fe985a15250f64d7468fd94fc75f622313d95e9e8b1419abeb0f710261
|
data/lib/doc_validator/cnpj.rb
CHANGED
@@ -1,17 +1,21 @@
|
|
1
1
|
module DocValidator
|
2
2
|
class Cnpj
|
3
3
|
def self.valid?(cnpj)
|
4
|
-
|
5
|
-
cnpj = cnpj.gsub(/\D/, '') # Remover todos os caracteres não numéricos
|
4
|
+
cnpj = cnpj.gsub(/\D/, '')
|
6
5
|
return false if cnpj.length != 14
|
7
|
-
|
8
|
-
# ...
|
6
|
+
|
9
7
|
true
|
10
8
|
end
|
11
9
|
|
12
10
|
def self.format(cnpj)
|
13
|
-
# Formatar o CNPJ para o padrão 00.000.000/0001-00
|
14
11
|
cnpj.gsub(/(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})/, '\1.\2.\3/\4-\5')
|
15
12
|
end
|
13
|
+
|
14
|
+
def self.mask(cnpj)
|
15
|
+
cnpj = cnpj.gsub(/\D/, '')
|
16
|
+
return cnpj unless cnpj.length == 14
|
17
|
+
|
18
|
+
cnpj.gsub(/(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})/, '**.*\2.\3/\4-**')
|
19
|
+
end
|
16
20
|
end
|
17
21
|
end
|
data/lib/doc_validator/cpf.rb
CHANGED
@@ -1,17 +1,21 @@
|
|
1
1
|
module DocValidator
|
2
2
|
class Cpf
|
3
3
|
def self.valid?(cpf)
|
4
|
-
|
5
|
-
cpf = cpf.gsub(/\D/, '') # Remover todos os caracteres não numéricos
|
4
|
+
cpf = cpf.gsub(/\D/, '')
|
6
5
|
return false if cpf.length != 11
|
7
|
-
|
8
|
-
# ...
|
6
|
+
|
9
7
|
true
|
10
8
|
end
|
11
9
|
|
12
10
|
def self.format(cpf)
|
13
|
-
# Formatar o CPF para o padrão 000.000.000-00
|
14
11
|
cpf.gsub(/(\d{3})(\d{3})(\d{3})(\d{2})/, '\1.\2.\3-\4')
|
15
12
|
end
|
13
|
+
|
14
|
+
def self.mask(cpf)
|
15
|
+
cpf = cpf.gsub(/\D/, '')
|
16
|
+
return cpf unless cpf.length == 11
|
17
|
+
|
18
|
+
cpf.gsub(/(\d{3})(\d{3})(\d{3})(\d{2})/, '***.\2.\3-**')
|
19
|
+
end
|
16
20
|
end
|
17
21
|
end
|
data/lib/doc_validator/rg.rb
CHANGED
@@ -1,17 +1,21 @@
|
|
1
1
|
module DocValidator
|
2
2
|
class Rg
|
3
3
|
def self.valid?(rg)
|
4
|
-
|
5
|
-
rg = rg.gsub(/\D/, '') # Remover todos os caracteres não numéricos
|
4
|
+
rg = rg.gsub(/\D/, '')
|
6
5
|
return false if rg.length != 9
|
7
|
-
|
8
|
-
# ...
|
6
|
+
|
9
7
|
true
|
10
8
|
end
|
11
9
|
|
12
10
|
def self.format(rg)
|
13
|
-
# Formatar o RG para o padrão XX.XXX.XXX-X
|
14
11
|
rg.gsub(/(\d{2})(\d{3})(\d{3})(\d{1})/, '\1.\2.\3-\4')
|
15
12
|
end
|
13
|
+
|
14
|
+
def self.mask(rg)
|
15
|
+
rg = rg.gsub(/\D/, '')
|
16
|
+
return rg unless rg.length == 9
|
17
|
+
|
18
|
+
rg.gsub(/(\d{2})(\d{3})(\d{3})(\d{1})/, '***.\2.\3-*')
|
19
|
+
end
|
16
20
|
end
|
17
21
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: doc_validator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maikon Douglas
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: rspec
|