The problem arises because Hash outside of Rails does not have a to_query method.
I changed the code in
/opt/local/lib/ruby/gems/1.8/gems/bossman-0.4.1/lib/bossman/boss.rb
changing the line:
@uri.query = @options.to_query
in it:
@uri.query = URI.encode_www_form(@options)
source
share