# File lib/juicer/binary.rb, line 82
    def set_opts(options)
      options = options.split " "
      option = nil
      regex = /^--?([^=]*)(=(.*))?/

      while word = options.shift
        if word =~ regex
          if option
            set_opt option, true
          end

          if $3
            set_opt $1, $3
          else
            option = $1
          end
        else
          set_opt option, word
          option = nil
        end
      end
    end