lazy_init 0.2.0 → 0.2.1

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: bfb12301d1b856a1e50ab4f9bf62f93fb81c1455bb97c96a7c3d99c46fcbd273
4
- data.tar.gz: bfd48db641c3925a5334367c3a7f0244c90e621f367d2ba9c769ff2618bd85e3
3
+ metadata.gz: 3024a39cbf18995df1c62d61d21e7c108be16f92ae8d6e403be33219d33e8194
4
+ data.tar.gz: 45da9a21782a4b33135e5e535f73cee0b49f9b0e91bc14816dc9b6ae666e7e76
5
5
  SHA512:
6
- metadata.gz: 60d4462685b13bb4be5028fb184c90ac5086370a6f994456a8137658660ead40fd19e6452d08697469a4b032ee6729c754b724fe873309872f067e4255f9ba49
7
- data.tar.gz: 358f2f3c570b13ed62e37d541f641f71950784a32adb4533f80b6814f560b9bd4407477b56682afab40724f611a41fcc824f3f6c930c2e236ffb05cf8ab3e5ab
6
+ metadata.gz: '0820f40375bcdfda2f9d4e91610860cfd872e69f4036f181be012b7544422cd8779f53127658bd27427915a0356e1dd79d8a1b5a5b9b8319c821daebe66f01a5'
7
+ data.tar.gz: f002dc16e9198decc47565e026c7090862acea11aa01774a1ebdace7bee5f64cc2ce2c979595e277438876920668f6a21b787243e5c46586b3dcd8dd5e514482
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+
2
+ # 0.2.1 (2025/27/07)
3
+
4
+ ### Fixed
5
+ - Documentation URL in gem metadata
6
+
1
7
  # 0.2.0 (2025/25/07)
2
8
 
3
9
  ### Added
data/README.md CHANGED
@@ -558,10 +558,10 @@ LazyInit automatically selects the best implementation:
558
558
 
559
559
  | Ruby Version | Hot Path Overhead | Best Use Case |
560
560
  |--------------|-------------------|---------------|
561
- | 3.3.1 | 1.1x | Production ready everywhere |
562
- | 3.0.2 | 1.4x | Production ready everywhere |
563
- | 2.7.5 | 4.1x | Expensive operations mainly |
564
- | 2.6.6 | 4.3x | Expensive operations mainly |
561
+ | 3.3.1 | 1.1x | Production ready everywhere |
562
+ | 3.0.2 | 1.4x | Production ready everywhere |
563
+ | 2.7.5 | 3.5x | Expensive operations mainly |
564
+ | 2.6.6 | 4.3x | Expensive operations mainly |
565
565
 
566
566
 
567
567
 
data/lazy_init.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.metadata['source_code_uri'] = 'https://github.com/N3BCKN/lazy_init'
19
19
  spec.metadata['changelog_uri'] = 'https://github.com/N3BCKN/lazy_init/blob/main/CHANGELOG.md'
20
20
  spec.metadata['bug_tracker_uri'] = 'https://github.com/N3BCKN/lazy_init/issues'
21
- spec.metadata['documentation_uri'] = "https://rubydoc.info/gems/lazy_init/#{LazyInit::VERSION}"
21
+ spec.metadata['documentation_uri'] = 'https://rubydoc.info/gems/lazy_init'
22
22
 
23
23
  # Specify which files should be added to the gem when it is released.
24
24
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LazyInit
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lazy_init
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstanty Koszewski
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-07-25 00:00:00.000000000 Z
11
+ date: 2025-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: benchmark-ips
@@ -119,7 +119,7 @@ metadata:
119
119
  source_code_uri: https://github.com/N3BCKN/lazy_init
120
120
  changelog_uri: https://github.com/N3BCKN/lazy_init/blob/main/CHANGELOG.md
121
121
  bug_tracker_uri: https://github.com/N3BCKN/lazy_init/issues
122
- documentation_uri: https://rubydoc.info/gems/lazy_init/0.2.0
122
+ documentation_uri: https://rubydoc.info/gems/lazy_init
123
123
  post_install_message:
124
124
  rdoc_options: []
125
125
  require_paths:
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
135
  - !ruby/object:Gem::Version
136
136
  version: '0'
137
137
  requirements: []
138
- rubygems_version: 3.0.9
138
+ rubygems_version: 3.5.9
139
139
  signing_key:
140
140
  specification_version: 4
141
141
  summary: Thread-safe lazy initialization patterns for Ruby