Kimmo Lehto

Results 287 comments of Kimmo Lehto

I agree, the documented order (btw it's documented twice in the README, the latter one makes more sense) is very unuseful. I would expect `logLevel: "info"` to output everything that...

Well, since it's "sinatra like".. I went to Wikipedia page about Frank Sinatra and found this: > He got his first break in 1935 when his mother persuaded a local...

Also: > Sinatra had long been desperate to find a film role which would bring him back into the spotlight, and Columbia Pictures boss Harry Cohn had been inundated by...

This would be excellent for "global options" that are inherited to subcommands when subclassing.

I have been working on a gem for this and would appreciate any issue reports and even better, pull requests. https://github.com/kontena/clamp-completer

I don't think it failovers properly. ``` config.beanstalk_url = ["beanstalk://queue1.vms", "beanstalk://queue2.vms"] ``` When both are responding, all is good: ``` >> Backburner.enqueue TestJob, 'hello' => true ``` Kill beanstalkd on...

I have config/initializers/backburner.rb that looks like this: ``` if Rails.env.test? module Backburner def self.test_mode @test_mode ||= :fake end def self.test_mode=(mode) @test_mode = mode end def self.test_enqueued_jobs @test_enqueued_jobs ||= [] end...

> Did you mean add `flags.debugFlag` into this package? I think it is a good idea, but if the user use the third party log library, `flags.debugFlag` doesn't know which...

Still sounds like a good idea.