proj4rb 0.2.0-i486-linux → 0.2.1-i486-linux
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.
- data/lib/proj4.rb +5 -1
- data/rakefile.rb +1 -1
- metadata +1 -1
data/lib/proj4.rb
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
|
1
|
+
|
2
|
+
if File.exists?(File.dirname(__FILE__ + '/../data'))
|
3
|
+
ENV['PROJ_LIB'] = File.dirname(__FILE__) + '/../data'
|
4
|
+
end
|
5
|
+
|
2
6
|
require 'projrb'
|
3
7
|
|
4
8
|
# Ruby bindings for the Proj.4 cartographic projection library (http://proj.maptools.org).
|
data/rakefile.rb
CHANGED
@@ -44,7 +44,7 @@ spec = Gem::Specification::new do |s|
|
|
44
44
|
s.platform = Gem::Platform::CURRENT
|
45
45
|
|
46
46
|
s.name = 'proj4rb'
|
47
|
-
s.version = "0.2.
|
47
|
+
s.version = "0.2.1"
|
48
48
|
s.summary = "Ruby bindings for the Proj.4 Carthographic Projection library"
|
49
49
|
s.description = <<EOF
|
50
50
|
Proj4rb is a ruby binding for the Proj.4 Carthographic Projection library, that supports conversions between a very large number of geographic coordinate systems and datums.
|
metadata
CHANGED