priority_queue_cxx 0.3.5 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/fast_containers/FastContainers.cpp +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7abe67c4e9f2b119c40c6313206cbd68b79e56e8c79550d38e5a38f9b33236b2
|
4
|
+
data.tar.gz: 9ff72ad384bd32a437e53011de54fa33f580645a1fc761e9755e95cc733bfb3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3001a18291bd80439f2beba7a1a560676c30bb591d3d1b04ac7a8fb3ede8084e1bdbfb8554b2590d80c101a7bf216e86cc29cfe1900b0f9dc43356f063f84d79
|
7
|
+
data.tar.gz: 4b477633d626e58227c189b11fb241f4fbdf0f0a0534e6901c5827c32d6ffe0e0e55f2efe63fb9479e56cad3dc3faed2d183fe2b26d08b37f5108a936a913889
|
@@ -255,6 +255,7 @@ extern "C" {
|
|
255
255
|
void Init_fast_containers() {
|
256
256
|
FastContainers = rb_define_module("FastContainers");
|
257
257
|
PriorityQueue = rb_define_class_under(FastContainers, "PriorityQueue", rb_cObject);
|
258
|
+
rb_undef_alloc_func(PriorityQueue);
|
258
259
|
rb_global_variable(&FastContainers);
|
259
260
|
rb_global_variable(&PriorityQueue);
|
260
261
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: priority_queue_cxx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberto Esposito
|
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
requirements: []
|
70
|
-
rubygems_version: 3.
|
70
|
+
rubygems_version: 3.4.2
|
71
71
|
signing_key:
|
72
72
|
specification_version: 4
|
73
73
|
summary: Fast (c++ wrapper) priority queue implementation for ruby.
|