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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 659c94d48e012adfd48d62dc168b1ac0a16a6275d022d7ed4f799ffab7074d6c
4
- data.tar.gz: 52069e3dc0bddb8a6b60b6a257fa8d33bf69831af98e5f4c7a37a2b88f528fe6
3
+ metadata.gz: c68052761a1e7169e0827a611d99b825c0922bad173fc449133522d27e53d2bc
4
+ data.tar.gz: 307f6323e07aa67f3232b9bb2ce4ad3c8aff4722498344cfeb2c3db9dfdc31da
5
5
  SHA512:
6
- metadata.gz: df7d823f92a3e4ce6fef0b660736b719f1e3989f5c89d76b20af5256f7269ee142ad0c6ff1ea5fb78386a945a312e43e7115248379860816a12ca550036edcca
7
- data.tar.gz: 5851ec8e10e7497b797a64542de4612ad1e22109dfcc4855a1752f49d4ec4d619e812e680469eddecc91b37e0b0760edde1e5368be7778229b3d10eef039c595
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
@@ -12,7 +12,7 @@ module FFI
12
12
  #-------------------------------------------------------------------------
13
13
  # Functions
14
14
  #-------------------------------------------------------------------------
15
- callback :CPLFileFinder, %i[string 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 :CPLScanLong, %i[string int], :ulong
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module FFI
4
4
  module GDAL
5
- VERSION = '1.0.0.beta10'
5
+ VERSION = '1.0.0.beta11'
6
6
  end
7
7
  end
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.beta10
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: 2019-09-17 00:00:00.000000000 Z
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.0.3
546
+ rubygems_version: 3.1.2
547
547
  signing_key:
548
548
  specification_version: 4
549
549
  summary: FFI wrapper for GDAL/OGR.