Tee Parham
Tee Parham
For reference, to switch to selenium + chromedriver: ```rb # Gemfile group :test do gem "selenium-webdriver" end # teaspoon_env.rb Teaspoon.configure do |config| config.driver = :selenium config.driver_options = { client_driver: :chrome...
Thanks for opening this issue and sharing some possible solutions. Here's what the spec says: ``` * A linear ring MUST follow the right-hand rule with respect to the area...
Maybe we could add an option (`clean`) to the initializer of `RGeo::GeoJSON::Coder`. If `clean` is true, then polygons are forced to be right-hand wound. The default for `clean` should be...
OR we could add a polygon cleaning method to `rgeo`, and leave this gem unchanged.
`is_simple?` depends on the factory. I confirmed that `is_simple?` incorrectly returns `true` with `RGeo::Geos::CAPIFactory` for the above test case.
@keithdoggett Thanks for stepping up and volunteering. I'll add you as an owner and adding you to rubygems too. Thanks for the patience, everyone.
That would be great. The tests in the `rgeo` gem have a lot of examples for creating features, so that's a good place to look. For example: https://github.com/rgeo/rgeo/blob/master/test/simple_mercator/point_test.rb Basically, use...
I began to fix this at https://github.com/teeparham/resque-loner & ended up re-writing it as a separate gem called `resque_solo`. The plugin's job name is still `Resque::Plugins::UniqueJob` so all you need to...
@apsoto Re: resque_solo: The tests are basically the same. I used fakeredis instead of an actual redis server in test. I re-structured the internal classes. I started with a blank...
Can we start with a failing test to reproduce this?