Ethan Garofolo

Results 3 issues of Ethan Garofolo

At https://github.com/rubocop/ruby-style-guide#suppressing-exceptions, it says "Don't suppress" exceptions, but then lists `do_something rescue nil` as a good example. ``` # good do_something rescue nil ``` It could be my ignorance, but...

In my project we run all the code through a build process that dumps the output into a `build` directory off the project root. This directory is happily git ignored...

enhancement

In my use case I need to allow page numbers greater than the last page of a query. The current behavior changes the requested page to the last one with...