bson_ext 1.12.1 → 1.12.2
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 +6 -6
- 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: 3749752730586aac26839ea2f3626628eb4957d2
|
4
|
+
data.tar.gz: 33d1e351d1587a61384d194b32becf5bd29d2815
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd3144a70934f38e2d3a5782dae6e37a63f16d5cf004ec5b8fb37a07428a8cf9741b4ab0e1491df796fb58c041c35c5cc265155307d55dc67e46e019e24dec0c
|
7
|
+
data.tar.gz: 0469fa8d855c89a97c65013165d329d12b56ece54435d247a78b4fbe8351ae99edcf5e222c760f4d5868220351400c20d2fcadb875de9183b098f2b834d95477
|
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.2
|
data/ext/cbson/cbson.c
CHANGED
@@ -1156,12 +1156,12 @@ void Init_cbson() {
|
|
1156
1156
|
Timestamp = rb_const_get(bson, rb_intern("Timestamp"));
|
1157
1157
|
rb_require("bson/types/regex");
|
1158
1158
|
BSONRegex = rb_const_get(bson, rb_intern("Regex"));
|
1159
|
-
BSONRegex_IGNORECASE = rb_const_get(BSONRegex, rb_intern("IGNORECASE"));
|
1160
|
-
BSONRegex_EXTENDED = rb_const_get(BSONRegex, rb_intern("EXTENDED"));
|
1161
|
-
BSONRegex_MULTILINE = rb_const_get(BSONRegex, rb_intern("MULTILINE"));
|
1162
|
-
BSONRegex_DOTALL = rb_const_get(BSONRegex, rb_intern("DOTALL"));
|
1163
|
-
BSONRegex_LOCALE_DEPENDENT = rb_const_get(BSONRegex, rb_intern("LOCALE_DEPENDENT"));
|
1164
|
-
BSONRegex_UNICODE = rb_const_get(BSONRegex, rb_intern("UNICODE"));
|
1159
|
+
BSONRegex_IGNORECASE = FIX2INT(rb_const_get(BSONRegex, rb_intern("IGNORECASE")));
|
1160
|
+
BSONRegex_EXTENDED = FIX2INT(rb_const_get(BSONRegex, rb_intern("EXTENDED")));
|
1161
|
+
BSONRegex_MULTILINE = FIX2INT(rb_const_get(BSONRegex, rb_intern("MULTILINE")));
|
1162
|
+
BSONRegex_DOTALL = FIX2INT(rb_const_get(BSONRegex, rb_intern("DOTALL")));
|
1163
|
+
BSONRegex_LOCALE_DEPENDENT = FIX2INT(rb_const_get(BSONRegex, rb_intern("LOCALE_DEPENDENT")));
|
1164
|
+
BSONRegex_UNICODE = FIX2INT(rb_const_get(BSONRegex, rb_intern("UNICODE")));
|
1165
1165
|
Regexp = rb_const_get(rb_cObject, rb_intern("Regexp"));
|
1166
1166
|
rb_require("bson/exceptions");
|
1167
1167
|
InvalidKeyName = rb_const_get(bson, rb_intern("InvalidKeyName"));
|
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.2
|
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-05-19 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.2
|
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.2
|
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
|