cpf-fmt 0.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0a057b7092cf818f4d92bc0ff8ff1e881eee618dd3d50defb96575ba7aa5327a
4
+ data.tar.gz: 12c7bfd662807da3c40f8c29c71c22a6f233fa4ead749867f473b595d65b4a55
5
+ SHA512:
6
+ metadata.gz: 6cec01e15df4631b2816dc957d82ce54d90be6c0b6af72523c4afb3ece5035734d3d995c3e415bf9574c8499751a92226cc7c9fff16566bcdd2eebe2b61914a8
7
+ data.tar.gz: 3c25dd9c3c10bd1e75402b31b749d8db63807235490a9cc2e9fc1cb63856fdf88bb6635b7ab8e6d506b89ecc9a1e072a7ed50f62ceb4f4d04b5b92e18b9bb521
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CpfFmt
4
+ VERSION = '0.0.0'
5
+ end
data/src/cpf-fmt.rb ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'cpf-fmt/version'
4
+
5
+ module CpfFmt
6
+ def self.hello
7
+ 'cpf-fmt'
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cpf-fmt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Julio L. Muller
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-03-04 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Format CPF with or without punctuation; strip to digits.
14
+ email:
15
+ - juliolmuller@outlook.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - src/cpf-fmt.rb
21
+ - src/cpf-fmt/version.rb
22
+ homepage: https://github.com/LacusSolutions/br-utils-ruby
23
+ licenses:
24
+ - MIT
25
+ metadata:
26
+ source_code_uri: https://github.com/LacusSolutions/br-utils-ruby
27
+ rubygems_mfa_required: 'true'
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - src
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '3.2'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.4.19
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Format and parse CPF strings (Brazilian personal ID)
47
+ test_files: []