helix_runtime 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e2832941eb3a4740a4c313b4200881ec54afe7f
4
- data.tar.gz: cb80fa30a62db2c402dd6a3cf191e0c16c011ed5
3
+ metadata.gz: 63070bcf0076687c7e9cbcae8296088529cdebf7
4
+ data.tar.gz: 672fa4e4b015112ea707f7d873e68cd5363f79de
5
5
  SHA512:
6
- metadata.gz: d1839fc7d6063c9b7fdd32490d0c097fd559e38d42079f4ba9f5a31de1e4a1e86a7d9a2e2c8091825aefef4d3cb59bdfd27ed4955f3d201901b1da128a49face
7
- data.tar.gz: 40bc5fef2b11f5a0d35dd855b932efa0e52b3b3b6345ffbb287145a64a8d966f7ace1319880870cc3c563e48769ddd6ea73dc5ef18576ff4d62ba657f2a97d9e
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.0";
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
 
@@ -1,5 +1,5 @@
1
1
  module HelixRuntime
2
2
  # Also update helix_runtime.c
3
- VERSION = "0.7.0"
3
+ VERSION = "0.7.1"
4
4
  GEM_VERSION = VERSION.gsub("-", ".")
5
5
  end
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.0
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-04 00:00:00.000000000 Z
12
+ date: 2017-10-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake