OpenMatriX 0.2.2 → 0.2.4
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
- data/lib/OpenMatriX.rb +2 -3
- data/lib/OpenMatriX/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0af580307143a7b7538f639547f59860c122344
|
4
|
+
data.tar.gz: a041f5647b823d523fd44ad8d88907b68b5e7b3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c2c28c72690d3e2fe73f762133a00b2601c389c1f8be16119754711c7948c4fff8dd62580e1a7b026611f8d3a618127587e9f4117f881b490ca9fad5ec40185
|
7
|
+
data.tar.gz: 33a0904bd3bf30865610f77fbb55618a641b140745d740a8886f3779392570971043c18d6fe104c89550ce9e2e89771213f383f71034c72607089741eadff886
|
data/lib/OpenMatriX.rb
CHANGED
@@ -114,7 +114,7 @@ module OMX
|
|
114
114
|
attach_function :group_open, :H5Fopen, [H5Types.hid_t, :string, H5Types.hid_t], H5Types.hid_t
|
115
115
|
attach_function :get_type, :H5Iget_type, [H5Types.hid_t], H5Types.hid_t
|
116
116
|
attach_variable :h5P_CLS_GROUP_ACCESS_ID, :H5P_CLS_GROUP_ACCESS_ID_g, :int
|
117
|
-
attach_variable :
|
117
|
+
attach_variable :h5P_CLS_LINK_ACCESS_ID, :H5P_CLS_LINK_ACCESS_ID_g, :int
|
118
118
|
#
|
119
119
|
# Object for wrapping an OMX file. Basic usage:
|
120
120
|
# file = OMX::OMXFile.new('filename.omx')
|
@@ -251,7 +251,7 @@ module OMX
|
|
251
251
|
attach_function :tNames2, :H5Lget_name_by_idx, [H5Types.hid_t, :string, :int, :int, :int, :pointer, :int, :int ], :int
|
252
252
|
|
253
253
|
# hid_t H5Pcreate( hid_t cls_id )
|
254
|
-
attach_function :createpl, :H5Pcreate, [H5Types.hid_t], H5Types.
|
254
|
+
attach_function :createpl, :H5Pcreate, [H5Types.hid_t], H5Types.hid_t
|
255
255
|
|
256
256
|
def initialize(file)
|
257
257
|
@id = file.id
|
@@ -275,7 +275,6 @@ module OMX
|
|
275
275
|
for t in 0..nT
|
276
276
|
size = 1 + tNames2(@gId, ".", 0, 0, t, nil, 0, pl)
|
277
277
|
tn2o = tNames2(@gId, ".", 0, 0, t, gName, size, pl)
|
278
|
-
#puts "gName = #{gName.read_string()}"
|
279
278
|
tN << gName.read_string()
|
280
279
|
end
|
281
280
|
return(tN)
|
data/lib/OpenMatriX/version.rb
CHANGED