doc_validator 1.1.2 → 1.1.3
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/README.md +9 -9
- data/lib/doc_validator/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dff6c1277762a86cb597cacc9220b6d4f5fcab73aa0488df1db447e692f3b88e
|
4
|
+
data.tar.gz: 3ac386ea0488971c05b989a909cb949901bb4feba67355e47ec9bc142a6b8531
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6430cd58fdb46c6e611099b1360812e99fa8233cbf8988697d4ed2cd1957fd5ad1686e5c71186914f65290df1f6492654faf03949807de05fb0a5e99f5ca9773
|
7
|
+
data.tar.gz: c68c05516b7c732f1d2a8dd983a2ca8844357221bc55aa1b2b412a2442d8c607b2d76e2215dcfd3956be826de1caf4e4031effc9cd8c7d16137bea8d466383b8
|
data/README.md
CHANGED
@@ -30,14 +30,14 @@ gem install doc_validator
|
|
30
30
|
Para validar um CPF, use o método `.valid?`:
|
31
31
|
|
32
32
|
```ruby
|
33
|
-
DocValidator::
|
34
|
-
DocValidator::
|
33
|
+
DocValidator::Cpf.valid?("123.456.789-09") # Retorna true
|
34
|
+
DocValidator::Cpf.valid?("112.345.678-900") # Retorna false
|
35
35
|
```
|
36
36
|
|
37
37
|
Para formatar um CPF, use o método `.format`:
|
38
38
|
|
39
39
|
```ruby
|
40
|
-
DocValidator::
|
40
|
+
DocValidator::Cpf.format("12345678909") # Retorna "123.456.789-09"
|
41
41
|
```
|
42
42
|
|
43
43
|
### Validação de CNPJ
|
@@ -45,14 +45,14 @@ DocValidator::CpfValidator.format("12345678909") # Retorna "123.456.789-09"
|
|
45
45
|
Para validar um CNPJ, use o método `.valid?`:
|
46
46
|
|
47
47
|
```ruby
|
48
|
-
DocValidator::
|
49
|
-
DocValidator::
|
48
|
+
DocValidator::Cnpj.valid?("12.345.678/0001-95") # Retorna true
|
49
|
+
DocValidator::Cnpj.valid?("123.456.789-09") # Retorna false
|
50
50
|
```
|
51
51
|
|
52
52
|
Para formatar um CNPJ, use o método `.format`:
|
53
53
|
|
54
54
|
```ruby
|
55
|
-
DocValidator::
|
55
|
+
DocValidator::Cnpj.format("12345678000195") # Retorna "12.345.678/0001-95"
|
56
56
|
```
|
57
57
|
|
58
58
|
### Validação de RG
|
@@ -60,14 +60,14 @@ DocValidator::CnpjValidator.format("12345678000195") # Retorna "12.345.678/0001
|
|
60
60
|
Para validar um RG, use o método `.valid?`:
|
61
61
|
|
62
62
|
```ruby
|
63
|
-
DocValidator::
|
64
|
-
DocValidator::
|
63
|
+
DocValidator::Rg.valid?("12.345.678/0001-95") # Retorna true
|
64
|
+
DocValidator::Rg.valid?("11.234.567/0001-000") # Retorna false
|
65
65
|
```
|
66
66
|
|
67
67
|
Para formatar um RG, use o método `.format`:
|
68
68
|
|
69
69
|
```ruby
|
70
|
-
DocValidator::
|
70
|
+
DocValidator::Rg.format("12345678000195") # Retorna "12.345.678/0001-95"
|
71
71
|
```
|
72
72
|
|
73
73
|
### Validação de CNH
|