immutable-ruby 0.1.0 → 0.2.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 +4 -4
- data/lib/immutable/_core.rb +3067 -0
- data/lib/immutable/hash.rb +4 -941
- data/lib/immutable/set.rb +3 -583
- data/lib/immutable/sorted_set.rb +0 -2
- data/lib/immutable/vector.rb +3 -1554
- data/lib/immutable/version.rb +1 -1
- metadata +7 -6
data/lib/immutable/version.rb
CHANGED
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: immutable-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Dowad
|
8
8
|
- Dov Murik
|
9
9
|
- Xavier Shay
|
10
10
|
- Simon Harris
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2024-04-20 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: concurrent-ruby
|
@@ -147,6 +147,7 @@ extensions: []
|
|
147
147
|
extra_rdoc_files: []
|
148
148
|
files:
|
149
149
|
- lib/immutable.rb
|
150
|
+
- lib/immutable/_core.rb
|
150
151
|
- lib/immutable/core_ext.rb
|
151
152
|
- lib/immutable/core_ext/enumerable.rb
|
152
153
|
- lib/immutable/core_ext/io.rb
|
@@ -165,7 +166,7 @@ homepage: https://github.com/immutable-ruby/immutable-ruby
|
|
165
166
|
licenses:
|
166
167
|
- MIT
|
167
168
|
metadata: {}
|
168
|
-
post_install_message:
|
169
|
+
post_install_message:
|
169
170
|
rdoc_options: []
|
170
171
|
require_paths:
|
171
172
|
- lib
|
@@ -180,8 +181,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
180
181
|
- !ruby/object:Gem::Version
|
181
182
|
version: '0'
|
182
183
|
requirements: []
|
183
|
-
rubygems_version: 3.
|
184
|
-
signing_key:
|
184
|
+
rubygems_version: 3.3.26
|
185
|
+
signing_key:
|
185
186
|
specification_version: 4
|
186
187
|
summary: Efficient, immutable, thread-safe collection classes for Ruby
|
187
188
|
test_files: []
|