gdal 0.0.2 → 0.0.3
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/README.md +1 -1
- data/ext/gdal-ruby/ogr/ogr.cpp +1 -1
- data/lib/gdal-ruby/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# gdal-ruby [](http://travis-ci.org/zhm/gdal-ruby)
|
|
2
2
|
|
|
3
3
|
Native bindings for GDAL/OGR for ruby. The GDAL repository contains ruby bindings
|
|
4
4
|
in the `swig/ruby` directory, but they aren't compiled or installed with default
|
data/ext/gdal-ruby/ogr/ogr.cpp
CHANGED
|
@@ -18640,7 +18640,7 @@ SWIGEXPORT void Init_ogr(void) {
|
|
|
18640
18640
|
/* Setup exception handling */
|
|
18641
18641
|
UseExceptions();
|
|
18642
18642
|
|
|
18643
|
-
rb_require("gdal/osr");
|
|
18643
|
+
rb_require("gdal-ruby/osr");
|
|
18644
18644
|
|
|
18645
18645
|
SwigClassDriver.klass = rb_define_class_under(mOgr, "Driver", rb_cObject);
|
|
18646
18646
|
SWIG_TypeClientData(SWIGTYPE_p_OGRDriverShadow, (void *) &SwigClassDriver);
|
data/lib/gdal-ruby/version.rb
CHANGED