faux_sorted_set 0.1.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: da2814f61fef06c6bfc3d6905f45530d3fec71af235e676a0fd8351e699e0eae
4
+ data.tar.gz: e41183e24782c94f0a42aa13dd5b99a835d5cb57113eb670cca8a02d75fc6344
5
+ SHA512:
6
+ metadata.gz: 565aa67a4d0c5a76a2fa0f1a401e1ae49d643af53d9c92a8f8bbfa1695e43c96950868594c3a945c335f7dd17fdccd79486abc1fe17be87a2ad3b12ac9ec018a
7
+ data.tar.gz: 1a5138286dd9c36983aa3cf252459aa13895bc0d619a49bece39b078d1cdfe6659b587dfaa9b113b9487e742254fba89c9cb0932d61e11828a843bf37749d37d
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FauxSortedSet
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "faux_sorted_set/version"
4
+
5
+ # `FauxSortedSet` provides no use or functionality.
6
+ module FauxSortedSet
7
+ end
data/lib/sorted_set.rb ADDED
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "set"
4
+
5
+ # A fake `SortedSet`: a sorted set implementation that doesn't sort its elements?!
6
+ class SortedSet < Set
7
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: faux_sorted_set
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Orien Madgwick
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-01-09 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - _@orien.io
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/faux_sorted_set.rb
21
+ - lib/faux_sorted_set/version.rb
22
+ - lib/sorted_set.rb
23
+ homepage: https://github.com/orien/faux_sorted_set
24
+ licenses:
25
+ - MIT
26
+ metadata:
27
+ homepage_uri: https://github.com/orien/faux_sorted_set
28
+ source_code_uri: https://github.com/orien/faux_sorted_set/tree/v0.1.0
29
+ bug_tracker_uri: https://github.com/orien/faux_sorted_set/issues
30
+ changelog_uri: https://github.com/orien/faux_sorted_set/blob/main/CHANGELOG.md
31
+ documentation_uri: https://www.rubydoc.info/gems/faux_sorted_set/0.1.0
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.0.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.3.4
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: 'A fake SortedSet: a set that doesn''t sort its elements?!'
51
+ test_files: []