cnpj-dv 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: e41c3c9ce1d2a8c96fe2c35183bb28dcaf629590313a5d769b2fe18d6f3a97c3
4
+ data.tar.gz: f9b596418d1be76f103142bde7675ea23ce6c2ca588d4acc176419e7e901072f
5
+ SHA512:
6
+ metadata.gz: a3c72b3f1757dca405986fbd44232620cdf6cd3bb200c26f3b2a7121b7b7a917aa1432afc0770bdba46a395b56cbfd712c13f6186f9329f7274729912e98b7db
7
+ data.tar.gz: b495d166c64353bf05c6a4c9dcbd351646eb360021fde40f4cf85b9a70412d8b2390249106e2c80cfa15bfe70f9bf69fd691fff68e15a648b2774bc436c9f8bb
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CnpjDv
4
+ VERSION = '0.0.0'
5
+ end
data/src/cnpj-dv.rb ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'cnpj-dv/version'
4
+
5
+ module CnpjDv
6
+ def self.hello
7
+ 'cnpj-dv'
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cnpj-dv
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:
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - src/cnpj-dv.rb
20
+ - src/cnpj-dv/version.rb
21
+ homepage: https://github.com/LacusSolutions/br-utils-ruby
22
+ licenses:
23
+ - MIT
24
+ metadata:
25
+ rubygems_mfa_required: 'true'
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - src
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '3.2'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubygems_version: 3.4.19
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Check-digit calculation for CNPJ (Brazilian company ID)
45
+ test_files: []