helix_runtime 0.7.0 → 0.7.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63070bcf0076687c7e9cbcae8296088529cdebf7
|
|
4
|
+
data.tar.gz: 672fa4e4b015112ea707f7d873e68cd5363f79de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6cf0579087e764243b59eaf7410468255d1eb0aa53add25348da74ad5a83d56f9c301665c47c84be87ffa37e1ad9f9410165884b85021035470a73113b002a2
|
|
7
|
+
data.tar.gz: f83c656458539755f37da10e78e3e1dce5c170462d3a773f820e5890d3d6c274355b96b6f91098e24dc0f728cca4a70c0f9be103b60a6715d50a48861619db8b
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
#include <helix_runtime.h>
|
|
7
7
|
|
|
8
8
|
// Update with version.rb
|
|
9
|
-
const char* HELIX_RUNTIME_VERSION = "0.7.
|
|
9
|
+
const char* HELIX_RUNTIME_VERSION = "0.7.1";
|
|
10
10
|
|
|
11
11
|
const char* HELIX_PRIsVALUE = PRIsVALUE;
|
|
12
12
|
const char* HELIX_SPRINTF_TO_S = "%" PRIsVALUE;
|
|
@@ -36,6 +36,10 @@ const void* HELIX_RARRAY_CONST_PTR(VALUE array) {
|
|
|
36
36
|
return RARRAY_CONST_PTR(array);
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
long HELIX_RHASH_SIZE(VALUE hash) {
|
|
40
|
+
return RHASH_SIZE(hash);
|
|
41
|
+
}
|
|
42
|
+
|
|
39
43
|
bool HELIX_RB_TYPE_P(VALUE v, int type) {
|
|
40
44
|
return RB_TYPE_P(v, type);
|
|
41
45
|
}
|
|
@@ -55,6 +55,8 @@ HELIX_EXTERN long HELIX_RARRAY_LEN(VALUE array);
|
|
|
55
55
|
HELIX_EXTERN void* HELIX_RARRAY_PTR(VALUE array);
|
|
56
56
|
HELIX_EXTERN const void* HELIX_RARRAY_CONST_PTR(VALUE array);
|
|
57
57
|
|
|
58
|
+
HELIX_EXTERN long HELIX_RHASH_SIZE(VALUE hash);
|
|
59
|
+
|
|
58
60
|
HELIX_EXTERN bool HELIX_RB_TYPE_P(VALUE v, int type);
|
|
59
61
|
HELIX_EXTERN int HELIX_TYPE(VALUE v);
|
|
60
62
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: helix_runtime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yehuda Katz
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-10-
|
|
12
|
+
date: 2017-10-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|