Steve Sloan
Steve Sloan
Can't resume fibers across threads, so anything that performs HTTP requests in another thread (e.g. NewRelic agent) will break. Not sure if there's a less hacky way to determine the...
Factory Girl calls save!() on generated models, but AC only provides save().
I want to overwrite some of the accessor methods in my AC model to convert to/from Ruby types, but I can't, as AC defines the accessor methods at initialization-time, not...
sweeper-0.3.2/vendor/lastfm.fpclient.beta2.linux-32/lastfmfpclient: error while loading shared libraries: libcurl.so.3: cannot open shared object file: No such file or directory Is there a newer version of fpclient? Or is the source available somewhere?
I'm trying to create a compound index that includes a belongs-to association. Here's a short example: ``` class Source include NoBrainer::Document has_many :items end class Item include NoBrainer::Document belongs_to :source...