doc_validator 1.1.3 → 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: dff6c1277762a86cb597cacc9220b6d4f5fcab73aa0488df1db447e692f3b88e
4
- data.tar.gz: 3ac386ea0488971c05b989a909cb949901bb4feba67355e47ec9bc142a6b8531
3
+ metadata.gz: 283b38317f7ed58f71f03e5c20e92ee3db7945046e896e7c76bc812ff9be06a8
4
+ data.tar.gz: 6db7ac0497d7d669edf54da5cd0f9b1797c9c3550d73a09528399db695525768
5
5
  SHA512:
6
- metadata.gz: 6430cd58fdb46c6e611099b1360812e99fa8233cbf8988697d4ed2cd1957fd5ad1686e5c71186914f65290df1f6492654faf03949807de05fb0a5e99f5ca9773
7
- data.tar.gz: c68c05516b7c732f1d2a8dd983a2ca8844357221bc55aa1b2b412a2442d8c607b2d76e2215dcfd3956be826de1caf4e4031effc9cd8c7d16137bea8d466383b8
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.3"
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.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
- - Seu Nome
7
+ - Maikon Douglas
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-10 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
@@ -94,8 +94,7 @@ dependencies:
94
94
  - !ruby/object:Gem::Version
95
95
  version: '2.0'
96
96
  description: Essa gem valida e formata documentos como CPF, CNPJ, RG, CNH e outros.
97
- email:
98
- - seuemail@exemplo.com
97
+ email: maikonconta0@gmail.com
99
98
  executables: []
100
99
  extensions: []
101
100
  extra_rdoc_files: []
@@ -109,7 +108,10 @@ files:
109
108
  homepage: https://github.com/maikondouglas/doc_validator
110
109
  licenses:
111
110
  - MIT
112
- metadata: {}
111
+ metadata:
112
+ homepage_uri: https://github.com/maikondouglas/doc_validator
113
+ source_code_uri: https://github.com/maikondouglas/doc_validator
114
+ bug_tracker_uri: https://github.com/maikondouglas/doc_validator/issues
113
115
  rdoc_options: []
114
116
  require_paths:
115
117
  - lib
@@ -117,7 +119,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
117
119
  requirements:
118
120
  - - ">="
119
121
  - !ruby/object:Gem::Version
120
- version: '0'
122
+ version: '2.7'
121
123
  required_rubygems_version: !ruby/object:Gem::Requirement
122
124
  requirements:
123
125
  - - ">="