binary_search_tree 1.2 → 1.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- metadata +24 -35
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
OGFhY2M1ZDE4ZTUzZDQ1MmJmYTlmZWVjNGY1OTAzMGE4ODVmM2E3Yw==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MTM2ODQ5NGZmNTU3OTIyZDUyMGZlMTQ0NDg0MDliZWUzNDUzODRjMA==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
OThlZDIyZThmNDNhNGViMjM2Zjc2M2M5M2ZjMDNlYmI4Y2I3NjkzMzE5MzA0
|
10
|
+
MTViMWM3ODExYWMxNDgwYjI3M2ViYmYxZDAyMTFhMzQ1ZTViYWJhNjRlZjI2
|
11
|
+
ZGE1YjI3NGQxN2VjNWU4MTI3ZGJkZTVhNDY0NmIyMDI2NjY4YTA=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
ZDhhMTNiZGNiZGVkMDAwMTlmNTJiOGU3MDY2NTkxNTRiODEwYjkzNmVjMmJj
|
14
|
+
NmQ3YmZmNmE4YTQ1ODBkMTg1NzA5ODI3ZWFhNGY4OGVkNTk1NzQ0NzEyNmJk
|
15
|
+
ZGJmZTc4YmNkNTI0YTU1MzFkOTczNTFhNjJjNTQ3N2M2MjI1NTQ=
|
metadata
CHANGED
@@ -1,57 +1,46 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: binary_search_tree
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
version: "1.2"
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '1.21'
|
6
5
|
platform: ruby
|
7
|
-
authors:
|
6
|
+
authors:
|
8
7
|
- Misha Conway
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
|
13
|
-
date: 2011-05-03 00:00:00 -07:00
|
14
|
-
default_executable:
|
11
|
+
date: 2013-11-19 00:00:00.000000000 Z
|
15
12
|
dependencies: []
|
16
|
-
|
17
13
|
description:
|
18
14
|
email: MishaAConway@gmail.com
|
19
15
|
executables: []
|
20
|
-
|
21
16
|
extensions: []
|
22
|
-
|
23
17
|
extra_rdoc_files: []
|
24
|
-
|
25
|
-
files:
|
18
|
+
files:
|
26
19
|
- lib/binary_search_tree.rb
|
27
20
|
- lib/binary_search_tree_hash.rb
|
28
|
-
has_rdoc: true
|
29
21
|
homepage:
|
30
|
-
licenses:
|
31
|
-
|
22
|
+
licenses:
|
23
|
+
- MIT
|
24
|
+
metadata: {}
|
32
25
|
post_install_message:
|
33
26
|
rdoc_options: []
|
34
|
-
|
35
|
-
require_paths:
|
27
|
+
require_paths:
|
36
28
|
- lib
|
37
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: "0"
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ! '>='
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
49
39
|
requirements: []
|
50
|
-
|
51
40
|
rubyforge_project: nowarning
|
52
|
-
rubygems_version:
|
41
|
+
rubygems_version: 2.0.3
|
53
42
|
signing_key:
|
54
|
-
specification_version:
|
55
|
-
summary: A self balancing avl binary search tree class. Also includes BinarySearchTreeHash
|
43
|
+
specification_version: 4
|
44
|
+
summary: A self balancing avl binary search tree class. Also includes BinarySearchTreeHash
|
45
|
+
which is a hash like class that internally uses binary search tree.
|
56
46
|
test_files: []
|
57
|
-
|