filegdb 0.0.3 → 0.0.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 +5 -13
- data/ext/filegdb/extconf.rb +5 -7
- data/lib/filegdb/version.rb +1 -1
- metadata +13 -14
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
NzRmMDRjY2U3MzZlZTA5NDVmYzdiNjA4MTUyMDc5ZjViMGUyMWNkZQ==
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 8d27d504eb2fe3a2fc9f5681c30d86db7cd593a2
|
|
4
|
+
data.tar.gz: 8977f7338996e2b45f199d7dc5e4f6a480a56a18
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
YjZjOTRiZDA3OGEwODJiN2MzZDUxMzgyYTEzZGRhMDUxNDVlZTBmNDVhMWFh
|
|
11
|
-
ODk0OTEzYmI5MzdhMWQ0YzRhNzk3MmU3YmYzMjRiZTkzZjcyYzQ=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
MWZmNjNhNjE4N2ZhNmIwYTk2NDk5NWI4MGIwYjZlMGNjMzMxZDE0MGE5Mzgz
|
|
14
|
-
M2VlOWEyY2MxNDQ4ZDc3YTM3YmM0OTQ1OWExNzMxNWU5NGU5OWE2ZGVmMTc3
|
|
15
|
-
ZmUzM2QyNTFmNGFiZDg1NGExYWI5OWQ2ZDNjZTJkYjExNTM2YmY=
|
|
6
|
+
metadata.gz: 22b2a3fe11a6807f6e2337d4e54e22d4ad3dadb3eda6b15497238a363c23c582c1a8aff58e8ddf8881f86430152b9a5abac6f2362f2d305f387b31b80081bec6
|
|
7
|
+
data.tar.gz: 74fc216a248610a527910c93045331365752b3ea1448a454557a0f9c84714b0b2d4ef08e506d54a964329c0c85e481d29673dbebdc80371e715ad4b7341b6453
|
data/ext/filegdb/extconf.rb
CHANGED
|
@@ -10,13 +10,12 @@ $libs = append_library $libs, 'FileGDBAPI'
|
|
|
10
10
|
|
|
11
11
|
$LDFLAGS << " -Wl,-rpath,#{File.join(filegdb_path, 'lib')}"
|
|
12
12
|
|
|
13
|
-
if RUBY_PLATFORM =~ /
|
|
14
|
-
# libFileGDBAPI requires GCC compilation because its C++ symbols are incompatible with LLVM
|
|
13
|
+
if RUBY_PLATFORM =~ /darwin/
|
|
14
|
+
# libFileGDBAPI requires GCC compilation because its C++ symbols are incompatible with LLVM/clang
|
|
15
15
|
#
|
|
16
16
|
# To install GCC on OSX:
|
|
17
17
|
#
|
|
18
|
-
# $ brew
|
|
19
|
-
# $ brew install --enable-cxx gcc49
|
|
18
|
+
# $ brew install gcc
|
|
20
19
|
#
|
|
21
20
|
|
|
22
21
|
msg = <<-GCC
|
|
@@ -26,12 +25,11 @@ if RUBY_PLATFORM =~ /darwin12/
|
|
|
26
25
|
===========================================================================================================================
|
|
27
26
|
===========================================================================================================================
|
|
28
27
|
|
|
29
|
-
The filegdb gem requires GCC on OSX
|
|
28
|
+
The filegdb gem requires GCC on OSX because the C++ symbols in libFileGDBAPI.dylib are incompatible with LLVM/clang
|
|
30
29
|
|
|
31
30
|
To install GCC on OSX:
|
|
32
31
|
|
|
33
|
-
$ brew
|
|
34
|
-
$ brew install --enable-cxx gcc49
|
|
32
|
+
$ brew install gcc
|
|
35
33
|
|
|
36
34
|
Note: Installing GCC through homebrew is safe and will not interfere with your Xcode installation.
|
|
37
35
|
|
data/lib/filegdb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: filegdb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zac McCormick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '0'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake-compiler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '0'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rspec
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '0'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
description: ESRI FileGDB bindings for ruby
|
|
@@ -60,8 +60,8 @@ extensions:
|
|
|
60
60
|
- ext/filegdb/extconf.rb
|
|
61
61
|
extra_rdoc_files: []
|
|
62
62
|
files:
|
|
63
|
-
- .gitignore
|
|
64
|
-
- .travis.yml
|
|
63
|
+
- ".gitignore"
|
|
64
|
+
- ".travis.yml"
|
|
65
65
|
- Gemfile
|
|
66
66
|
- LICENSE
|
|
67
67
|
- Makefile
|
|
@@ -139,17 +139,17 @@ require_paths:
|
|
|
139
139
|
- ext
|
|
140
140
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
141
141
|
requirements:
|
|
142
|
-
- -
|
|
142
|
+
- - ">="
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
144
|
version: '0'
|
|
145
145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
146
|
requirements:
|
|
147
|
-
- -
|
|
147
|
+
- - ">="
|
|
148
148
|
- !ruby/object:Gem::Version
|
|
149
149
|
version: '0'
|
|
150
150
|
requirements: []
|
|
151
151
|
rubyforge_project:
|
|
152
|
-
rubygems_version: 2.
|
|
152
|
+
rubygems_version: 2.4.2
|
|
153
153
|
signing_key:
|
|
154
154
|
specification_version: 4
|
|
155
155
|
summary: ESRI FileGDB bindings for ruby. Currently contains native extensions for
|
|
@@ -169,4 +169,3 @@ test_files:
|
|
|
169
169
|
- spec/spatial_reference_spec.rb
|
|
170
170
|
- spec/spec_helper.rb
|
|
171
171
|
- spec/table_spec.rb
|
|
172
|
-
has_rdoc:
|