rb_falcon_logger 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: d580d23f926e2754b3faff8493637860980164d80e84c71d5f0673b032d35253
4
- data.tar.gz: 3b344b9be5ba10542b22188cabf1db9ddf9bf6c2ffe9a6b79774de1e8fcd0907
3
+ metadata.gz: f891bd3afe7cf243225171e48ff4da148a63ea74611afe3240cb080db2346955
4
+ data.tar.gz: ca7048ce5076b6b65f95d2d9aff287277d4b3bbba4ba3b52d23a161c144ce706
5
5
  SHA512:
6
- metadata.gz: 4fb74ebd819ca38ddaf44953388e0dd4c9aae95d589a5f46e4241693018e498ec43a5ce7a6f9355f38b18112c965b6df647658b69e5ce7591500191edaa6bd4d
7
- data.tar.gz: 24f527bd3d2f31989a5ef2066f8dc9241f842450b674dd8f4befe4ce89119f8ccd840d4324ca53cb75bb03e940a99a41b0fd5786f64cc21199c2e38a953e8e6b
6
+ metadata.gz: 19d944d86918b887f8d9336fb62e6ea3bd59d44e9037570bd905c723ba442c43df4fd4728f00a8a8bdfb72456b9bd326d42923e61bfd32bbafbedf6bd10e0f54
7
+ data.tar.gz: '086a53bc43649baab4a46ab2bdf8baf9e04c704fd405812dde0771dc81819f737a687bf9c21f1cd2dc29099983190e5696dc2dfa150d5d61af1a371f7e8e75ee'
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) since 2025: rb-falcon-logger Ruby Gem
3
+ Copyright (c) since 2025: rb-falcon-logger Ruby Library
4
4
  description: fast logger with multiple modes and formats
5
5
  author: J. Arrizza email: cppgent0@gmail.com
6
6
 
data/README.md CHANGED
@@ -1,10 +1,12 @@
1
- * website: <https://arrizza.com/rb-falcon-logger.html>
2
- * installation: see <https://arrizza.com/setup-common.html>
1
+ * website: [Website](https://arrizza.com/rb-falcon-logger.html)
2
+ * copyright: [Copyright and License](https://arrizza.com/copyright-license.html)
3
+ * repo status: [Repo Information](https://arrizza.com/repo-information.html)
4
+ * installation: [Common Setup](https://arrizza.com/setup-common.html)
3
5
 
4
6
  ## Summary
5
7
 
6
8
  This is a ruby gem that provides a way to run a fast logger.
7
- see <https://arrizza.com/python-falcon-logger.html> for a python version
9
+ see [Python Falcon Logger](https://arrizza.com/python-falcon-logger.html) for a python version
8
10
 
9
11
  ## Sample code
10
12
 
@@ -237,10 +237,10 @@ class FalconLogger
237
237
  elsif @log_format == LogFormat::NONE
238
238
  @log_it = method(:_log_it_ut_none)
239
239
  else
240
- # :nocov:
240
+ # simplecov:disable
241
241
  # coverage: cannot be done in a UT
242
242
  puts("BUG in _set_log_it_ut_fn : unhandled log format #{@log_format}")
243
- # :nocov:
243
+ # simplecov:disable
244
244
  end
245
245
  end
246
246
 
@@ -692,10 +692,10 @@ class FalconLogger
692
692
  excp.backtrace.each do |line|
693
693
  @log_it.call([true, @verbose, now, 'EXCP', [' ', line]].freeze)
694
694
  count += 1
695
- # :nocov:
695
+ # simplecov:disable
696
696
  # coverage: cannot be done in a UT; minitest adds an unknown number of excp lines
697
697
  break if count > max_lines
698
- # :nocov:
698
+ # simplecov:enable
699
699
  end
700
700
  end
701
701
 
@@ -719,10 +719,10 @@ class FalconLogger
719
719
  while count.positive?
720
720
  # in some closing/race conditions, the file may be closed in the middle of a loop
721
721
  # note this can be applied to stdout as well.
722
- # :nocov:
722
+ # simplecov:disable
723
723
  # coverage: cannot be done in a UT
724
724
  break if @fp.closed?
725
- # :nocov:
725
+ # simplecov:enable
726
726
 
727
727
  # get the next tuple: (always_print, verbose, dts, prefix, args)
728
728
  tuple = @queue.pop
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_falcon_logger
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: 2025-09-06 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: fast logger with multiple modes and formats
14
13
  email: cppgent0@gmail.com
@@ -27,7 +26,6 @@ licenses:
27
26
  metadata:
28
27
  homepage_uri: https://arrizza.com/rb-falcon-logger
29
28
  source_code_uri: https://bitbucket.org/arrizza-public/rb-falcon-logger/src/master
30
- post_install_message:
31
29
  rdoc_options: []
32
30
  require_paths:
33
31
  - lib
@@ -42,8 +40,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
42
40
  - !ruby/object:Gem::Version
43
41
  version: '0'
44
42
  requirements: []
45
- rubygems_version: 3.4.20
46
- signing_key:
43
+ rubygems_version: 4.0.17
47
44
  specification_version: 4
48
45
  summary: fast logger, several modes and formats
49
46
  test_files: []