Slava Nikulin

Results 2 issues of Slava Nikulin

The gem works for libgeos-3.5.x, but for libgeos-3.6.2 it works incorrectly(or vice versa) I.e. ``` RGeo::GeoJSON.decode "{\"type\":\"MultiPolygon\", \"coordinates\":[[[[30.011931, 59.799227], [30.011931, 59.799227], [30.011931, 59.799227], [30.011931, 59.799227]]]]}", json_parser: :json ``` is returning...

bug

``` class UserSessionsController < ApplicationController skip_before_action :require_login, except: [:destroy] def new ... end def create ... end def destroy logout redirect_to signin_path , flash: { info: 'Bye!' } end end...