M. E. Patterson

Results 10 issues of M. E. Patterson

I'm stumped on how to make it work in a pretty basic class: ``` class Watcher def start monitor = FSSM::Monitor.new(:directories => true) monitor.path('test_data/', '**/*') do update do |base, relative,...

In the case where you might want Optimism to only send the _literal_ error message string (without the attribute name humanized in front of it), you need to not go...

Is there a way to do this, or am I missing something... ? I have: ``` ruby module API class Base < GrapeApi::API mount API::V1::Robots mount API::V1::Pirates mount API::V1::Ninjas mount...

confirmed bug
needs work/investigation
swagger-1.2

This is a weird one that I'm having trouble debugging. If I do this: ``` ruby namespace ':color' do resource :toys do desc "Get a list of toys, scoped by...

bug?
swagger-1.2

I'm a bit confused. Installed the latest Postgres.app, and love the fact that I can switch between 9.5 and 9.6 but here's the issue I'm having... looks like it installed...

documentation

I cached a token from my API service: ``` hash = LockAndCache.lock_and_cache(:api_token, client: client_id) do get_token_from_remote end ``` After this, it DOES appear to properly cache and not hit the...

given this html: ```html ``` ... htmlbeautifier will throw an `Unmatched sequence` error In console, this can be demonstrated easily with ```ruby # FAILS HtmlBeautifier.beautify("") # this works fine HtmlBeautifier.beautify("".gsub("\n",""))...

Here's an odd one that I'd love some feedback on: Attempting to squeeze extra performance out of an app, I moved it from MRI 2.1 to Rubinius 2.2.10. With a...

(at least in my production environment) On any collection sharded by the shard key "_id", this code ``` ruby 2.0.0p247 :001 > i = Item.first 2.0.0p247 :002 > i.with_lock do...

confirmed bug

On postgres, we use UUIDs as our primary keys. When I try to use any of the ar-ondemand methods... ``` > Widget.limit(500).for_reading { |e| puts e.id } SQL (2.8ms) SELECT...