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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8f2b6d9d4c60e578f98a15e241ff7e8bad3150e18b947dee9aa804901ebba31
4
- data.tar.gz: 91d73ec60c4bf7f4f0aa83607db0b11de508b33106a829be926cea739d8736fb
3
+ metadata.gz: 283b38317f7ed58f71f03e5c20e92ee3db7945046e896e7c76bc812ff9be06a8
4
+ data.tar.gz: 6db7ac0497d7d669edf54da5cd0f9b1797c9c3550d73a09528399db695525768
5
5
  SHA512:
6
- metadata.gz: 26c17028595a225e6fd55fb60ecd08d59294ec7cba0a342c9d3204ff2c182137f19ac73649477d2e268bb5b7f27c2cc33d4ea0ef481439254761a61a3e4878b6
7
- data.tar.gz: c0a42a789c476a68a1772b8c47af555718a9d2cf7da9b03391bb1c8b85d7efd00b3c1c2e13b22dfc6946bb280128d680c3767a3ed4c2c0f10d09ef7d2913dc95
6
+ metadata.gz: 2a7359e5a927581e028193504fbda2c45c0eff4bb3746ca4fa3919a9f93918002269e0d2ea98f9a7786d504a03ae29db1fe4b8725d9eb9401c21dc8668a2a356
7
+ data.tar.gz: ce2827a99ba4f8a4d235e5f953e7c116df43d888a08f36c8db8f403aca43525e8a4b25fe985a15250f64d7468fd94fc75f622313d95e9e8b1419abeb0f710261
@@ -1,17 +1,21 @@
1
1
  module DocValidator
2
2
  class Cnpj
3
3
  def self.valid?(cnpj)
4
- # Algoritmo de validação do CNPJ
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
- # Implementação da validação do CNPJ
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
@@ -1,17 +1,21 @@
1
1
  module DocValidator
2
2
  class Cpf
3
3
  def self.valid?(cpf)
4
- # Algoritmo de validação do CPF
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
- # Implementação da validação do CPF
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
@@ -1,17 +1,21 @@
1
1
  module DocValidator
2
2
  class Rg
3
3
  def self.valid?(rg)
4
- # Algoritmo de validação do RG
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
- # Implementação da validação do RG
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
@@ -1,3 +1,3 @@
1
1
  module DocValidator
2
- VERSION = "1.1.4"
2
+ VERSION = "1.2.4"
3
3
  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.1.4
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-11 00:00:00.000000000 Z
10
+ date: 2025-03-31 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rspec