# File lib/rhc/helpers.rb, line 214
    def client_from_options(opts)
      RHC::Rest::Client.new({
          :url => openshift_rest_endpoint.to_s,
          :debug => options.debug,
          :headers => parse_headers(options.header),
          :timeout => options.timeout,
          :warn => BOUND_WARNING,
          :api_always_auth => options.always_auth
        }.merge!(ssl_options).merge!(opts))
    end