bson_ext 1.12.4 → 1.12.5
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/VERSION +1 -1
- data/ext/cbson/cbson.c +7 -1
- data/ext/cbson/version.h +1 -1
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba1d8925ebc7607051044f09cccc30141ce01cee
|
4
|
+
data.tar.gz: a81ef615a63c209984d2e04a96ad9e79cb12b2b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f23e46e0a3dff42e2a5e57cfd0350aeead743e26e855ee6bd6b56562d6274742f3945a71d1137ce8d612f90fffbe732d598ec1756b12213ca363558cf301b1b4
|
7
|
+
data.tar.gz: b47a95161d43426f36b04d60fef2a2f7b7b66379df8b12d609b7bb6e737b2d3c831c22a7825b25263bce4e656314bbbb39e17d2a67e49169cdb989e2f64cddcb
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.12.
|
1
|
+
1.12.5
|
data/ext/cbson/cbson.c
CHANGED
@@ -22,7 +22,13 @@
|
|
22
22
|
|
23
23
|
#include "ruby.h"
|
24
24
|
#include "version.h"
|
25
|
-
|
25
|
+
|
26
|
+
#if (defined(_WIN16) || defined(_WIN32) || defined(_WIN64)) && !defined(__WINDOWS__)
|
27
|
+
# define __WINDOWS__
|
28
|
+
# include <winsock2.h>
|
29
|
+
#else
|
30
|
+
# include <arpa/inet.h>
|
31
|
+
#endif
|
26
32
|
|
27
33
|
/* Ensure compatibility with early releases of Ruby 1.8.5 */
|
28
34
|
#ifndef RSTRING_PTR
|
data/ext/cbson/version.h
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bson_ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.12.
|
4
|
+
version: 1.12.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emily Stolfo
|
@@ -34,7 +34,7 @@ cert_chain:
|
|
34
34
|
XZOS48LlWh15EG4yZo/gRzqNAW2LUIkYA5eMS2Kp6r+KV8IBUO/LaHdrXbdilpa8
|
35
35
|
BRsuCo7UZDbFVRns04HLyjVvkj+K/ywIcdKdS0csz5M=
|
36
36
|
-----END CERTIFICATE-----
|
37
|
-
date: 2015-
|
37
|
+
date: 2015-12-01 00:00:00.000000000 Z
|
38
38
|
dependencies:
|
39
39
|
- !ruby/object:Gem::Dependency
|
40
40
|
name: bson
|
@@ -42,14 +42,14 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - "~>"
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: 1.12.
|
45
|
+
version: 1.12.5
|
46
46
|
type: :runtime
|
47
47
|
prerelease: false
|
48
48
|
version_requirements: !ruby/object:Gem::Requirement
|
49
49
|
requirements:
|
50
50
|
- - "~>"
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 1.12.
|
52
|
+
version: 1.12.5
|
53
53
|
description: C extensions to accelerate the Ruby BSON serialization. For more information
|
54
54
|
about BSON, see http://bsonspec.org. For information about MongoDB, see http://www.mongodb.org.
|
55
55
|
email: mongodb-dev@googlegroups.com
|
metadata.gz.sig
CHANGED
Binary file
|