module Rhymba

dont escape request? sure go for it module Faraday

module NestedParamsEncoder
  def self.escape(arg)
    arg
  end
end
module FlatParamsEncoder
  def self.escape(arg)
    arg
  end
end

end

Constants

VERSION

Public Class Methods

client(options={}) click to toggle source

Alias for Rhymba::Client.new

@return [Rhymba::Client]

# File lib/rhymba.rb, line 13
def self.client(options={})
  Rhymba::Client.new(options)
end
method_missing(method, *args, &block) click to toggle source

Delegate to Rhymba::Client

Calls superclass method
# File lib/rhymba.rb, line 18
def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end
respond_to?(method, include_all=false) click to toggle source

Delegate to Rhymba::Client

Calls superclass method
# File lib/rhymba.rb, line 24
def self.respond_to?(method, include_all=false)
  return client.respond_to?(method, include_all) || super
end