boson icon indicating copy to clipboard operation
boson copied to clipboard

A command/task framework similar to rake and thor built with extendability in mind.

Results 7 boson issues
Sort by recently updated
recently updated
newest added

If I'm understanding correctly, in order to pass an array of arguments, they have to be in quotes: ``` my_cmd 'foo bar quux' ``` Is there anyway for multiple items...

Default Arguments are failing when there are more than one for a single command: ``` require 'boson/runner' require 'sidekiq' class TestBoson < Boson::Runner def three_default_arguments ( param1= 1, param2= 2,...

Error: Bad file descriptor - cannot acquire exclusive lock on File not opened for write Original error: Bad file descriptor - cannot acquire exclusive lock on File not opened for...

enhancement

gem install boson boson-more , installs it just fine. echo "require 'boson/more'" >> .bosonrc , makes the rc file. boson libraries , doesnt work. returns: Error: Command 'libraries' not found...

enhancement

First off - thank you very much for creating boson. I've found it to be a wonderful tool. Recently I've been upgrading from < 1.0 to 1.2.3. I've noticed that...

bug

There is an inconsistency in giving boolean options a true or false as a default value. I've noticed this issue since atleast version 0.3.4. Given this code: ``` ruby module...

bug

I'd like boson support pre-requisites or dependendencies support (like rake). Example (rake): ``` ruby task :test => [:compile, :dataLoad] do #do something end ``` compile and dataLoad are tasks and...

enhancement