Ramon Tayag
Ramon Tayag
senny, what did you do to get around this? Unfortunately I've stared at this output for an hour to no avail. I'm getting to errors: one in this ticket, and...
This is how I insert the middleware: ``` Rails.application.middleware.insert 0, Rack::Sendfile Rails.application.middleware.insert 1, Rack::Cache, { :verbose => true, :metastore => URI.encode("file:#{Rails.root}/tmp/dragonfly/cache/meta"), :entitystore => URI.encode("file:#{Rails.root}/tmp/dragonfly/cache/body") } unless rack_cache_already_inserted ``` I then...
After more investigating, I found out that Rails 3.1 (which I am on) already inserts Rack::Cache for you in production. This poses a problem though, as the configuration looks like...
Oh cool thanks John! Ramon Tayag On Sat, Oct 1, 2011 at 11:56 PM, John W. Long < [email protected]>wrote: > Fancy buttons doesn't provide something for this out of the...
Hey folks! Any news on this? Was scratching my head for a while there. The right URL was generated in the email but it was as if the subdomains were...
Hmm... yeah I use a different hack (I set default_url_options). I'm using my branch now that's a merge of yours and @bmabey's. I got it working fine. But yeah -...
Thanks opted that too, though I didn't need to `to_s`: ```slim == f.simple_form_for(@model) {|form| cell(FormContents, form).() } ```
Hello, @arturictus. Yes, it's just a way to turn off the automatic requeueing feature that Sidekiq::Alive has, since we will be the one enqueuing it every N seconds.
Ok cool. Yes I plan to not change the current signature. I'm thinking of the following (pseudo code): ```ruby class LightService::Context delegate :success?, :failure?, :error_code, :message, to: :outcome attr_accessor :outcome...
Just an update. We've started using this in our app first, and just monkey-patching LS to behave the way intended. Soon, we should be able to make a pull request...