Simeon H.K. Fitch

Results 210 comments of Simeon H.K. Fitch

Looks like we kinda [have a start](https://github.com/georust/gdal/blob/master/src/raster/warp.rs)...

Note: `open_mask_band` and friends are implemented in #285, and released in [0.13.0](https://github.com/georust/gdal/releases/tag/v0.13.0).

@jdroenner By this: > Most of the time the docs of the wrapped gdal-sys method will be enough to derive a methods doc. are you suggesting (as a contribution) the...

I just rebuilt the documentation with `bindgen` version `0.59.2`, and it seems a lot more documentation is getting injected than what's in docs.rs:

This may be covered in some part by [sbt-scaliterate](https://github.com/wookietreiber/sbt-scaliterate).

Your comment on #172 makes me think you were talking about this item. Unlike that one, I'm *not* comfortable doing this one, as I really haven't grokked the order of...

@olafurpg You're suggested technique is interesting, but doesn't allow for selective `tut` execution of code fragments interspersed with explanatory Markdown. Still, I might be able to get some mileage from...

Yeh, I think line numbers is the wrong way to go. Playing off the _knitr_ Code Externalization, I wonder if something like this would be closer to the mark: Scala:...

PS: adding the following to the build should eliminate the need to run `tutPublishLocal` manually before running `scripted`: ```scala scriptedDependencies := (scriptedDependencies dependsOn(publishLocal in core, publishLocal in plugin)).value ```