ffi-gdal 1.0.0.beta10 → 1.0.0.beta11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +6 -0
- data/lib/ffi/cpl/conv.rb +2 -2
- data/lib/ffi/gdal/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c68052761a1e7169e0827a611d99b825c0922bad173fc449133522d27e53d2bc
|
4
|
+
data.tar.gz: 307f6323e07aa67f3232b9bb2ce4ad3c8aff4722498344cfeb2c3db9dfdc31da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96bb0bbd71290fc05806883cce455c8000ee494644db02b3c8203f305dea236272713ef02b2c10ef0912e28dd5c4916580b2b33efff2ee67c5ac253004cec2d5
|
7
|
+
data.tar.gz: d8371066d7e1ab28235b1d42397864aade41d2921b7149dd23c2fc3574c0c8c4ac4bc42c663949929adf90f418e7bdcd7e1f4c948a6c6ea11dcf11359ac78d14
|
data/History.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
Format for this file derived from [http://keepachangelog.com](http://keepachangelog.com).
|
4
4
|
|
5
|
+
## 1.0.0.beta11 / 2020-06-02
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
* Change CPLFileFinder callback return type to pointer.
|
10
|
+
|
5
11
|
## 1.0.0.beta10 / 2019-08-28
|
6
12
|
|
7
13
|
### Bug Fixes
|
data/lib/ffi/cpl/conv.rb
CHANGED
@@ -12,7 +12,7 @@ module FFI
|
|
12
12
|
#-------------------------------------------------------------------------
|
13
13
|
# Functions
|
14
14
|
#-------------------------------------------------------------------------
|
15
|
-
callback :CPLFileFinder, %i[string string], :
|
15
|
+
callback :CPLFileFinder, %i[string string], :pointer
|
16
16
|
|
17
17
|
#---------
|
18
18
|
# Config
|
@@ -49,7 +49,7 @@ module FFI
|
|
49
49
|
attach_function :CPLScanString, %i[string int int int], :string
|
50
50
|
attach_function :CPLScanDouble, %i[string int], :double
|
51
51
|
attach_function :CPLScanLong, %i[string int], :long
|
52
|
-
attach_function :
|
52
|
+
attach_function :CPLScanULong, %i[string int], :ulong
|
53
53
|
attach_function :CPLScanUIntBig, %i[string int], Port.find_type(:GUIntBig)
|
54
54
|
attach_function :CPLScanPointer, %i[string int], :pointer
|
55
55
|
attach_function :CPLPrintString, %i[string string int], :int
|
data/lib/ffi/gdal/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi-gdal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.beta11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve Loveless
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -543,7 +543,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
543
543
|
- !ruby/object:Gem::Version
|
544
544
|
version: 1.3.1
|
545
545
|
requirements: []
|
546
|
-
rubygems_version: 3.
|
546
|
+
rubygems_version: 3.1.2
|
547
547
|
signing_key:
|
548
548
|
specification_version: 4
|
549
549
|
summary: FFI wrapper for GDAL/OGR.
|