rb_cfg_parser 0.3.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c257a0100090068ccddd91e39ad4d7bdaec8967c7c189e8e98389f156c93142b
4
- data.tar.gz: f87674b4731d40f87dab6a66e7480be37a3a39347dc8097ce942ed30bd9c256c
3
+ metadata.gz: e88ecf289bea45b4e0b1d215a1e7fd2949deb98491e5c222311f8b072690e405
4
+ data.tar.gz: '0029a3abffa8b3ed7a6042683972dad1c50be2acf9e68f182c9955fd4fcbe3ad'
5
5
  SHA512:
6
- metadata.gz: 68af5ba52f48f5b2c28cf48d5f856d31ada97b8cfd46a0ac5929a8f872f19818700e9003af8a33b8a751db42a203629417e32156dc8167392c0308baacca7c03
7
- data.tar.gz: 686bcdd920f1a917cfd5c424a3d9387af583c057f0a063506346699c7a3e73c43bf8cc1e2bd6bab63f21a35f4f189c3517e5e0bb645e95b4c1ebdc13cba1f220
6
+ metadata.gz: da1654d49442baa0dbbf54e7b5224795f656ffe8c98d336dc93f7d27df1fab13d46796164f9aa156b2ff1f78614f9a21d3840b2799269db8ce76218b75142a61
7
+ data.tar.gz: 343c27c5099524eda8bb788d2d7fee522463fe9f7ab164313c6d15cfe9aaf543fab30fa38535b49c23c58edc95377159a9534ba18d5bc68a8e5332cbd8389e74
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  * website: [Website](https://arrizza.com/rb-cfg-parser.html)
2
+ * copyright: [Copyright and License](https://arrizza.com/copyright-license.html)
3
+ * repo status: [Repo Information](https://arrizza.com/repo-information.html)
2
4
  * installation: [Common Setup](https://arrizza.com/setup-common.html)
3
5
 
4
6
  ## Summary
@@ -69,9 +69,9 @@ class RbCfgParser
69
69
  elsif @fsm == :asgmt_read_values
70
70
  fsm_asgmt_read_values
71
71
  else
72
- # :nocov: can't be invoked unless there is an unknown fsm state
72
+ # simplecov:disable can't be invoked unless there is an unknown fsm state
73
73
  raise_unexpected_token
74
- # :nocov:
74
+ # simplecov:enable
75
75
  end
76
76
 
77
77
  get_next_token
@@ -292,11 +292,11 @@ class RbCfgParser
292
292
  # print a debug line
293
293
  # @param msg line to print
294
294
  # @return None
295
- # :nocov:
295
+ # simplecov:enable
296
296
  def print_dbg(msg)
297
297
  @log_cb.call(format('DBG line: %3d] %s', @lineno, msg)) if @verbose > 1
298
298
  end
299
- # :nocov:
299
+ # simplecov:disable
300
300
 
301
301
  ###
302
302
  # print a line
data/lib/version.rb CHANGED
@@ -1,3 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  ## current version
3
- VERSION = '0.3.0'
3
+ module ConstantsVersion
4
+ VERSION = '1.0.0'
5
+ end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rb_cfg_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - J. Arrizza
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2026-03-25 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: ruby gem to parse and load .cfg files
14
13
  email: cppgent0@gmail.com
@@ -28,7 +27,6 @@ licenses:
28
27
  metadata:
29
28
  homepage_uri: https://arrizza.com/rb-cfg-parser
30
29
  source_code_uri: https://bitbucket.org/arrizza-public/rb-cfg-parser/src/master
31
- post_install_message:
32
30
  rdoc_options: []
33
31
  require_paths:
34
32
  - lib
@@ -43,8 +41,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
43
41
  - !ruby/object:Gem::Version
44
42
  version: '0'
45
43
  requirements: []
46
- rubygems_version: 3.4.20
47
- signing_key:
44
+ rubygems_version: 4.0.17
48
45
  specification_version: 4
49
46
  summary: parse a .cfg text file
50
47
  test_files: []