Sha256: 8a7b70a08b62b0015d7fc5253143c18772c6c9ca6a6a68206e2d43b4f17e0d95

Contents?: true

Size: 319 Bytes

Versions: 1

Compression:

Stored size: 319 Bytes

Contents

require 'footrest/connection'
require 'footrest/request'

module Footrest
  class Client
    attr_reader :options

    include Footrest::Connection
    include Footrest::Request

    def initialize(options={}, &block)
      @options = Footrest.config.merge(options)
      @faraday_option_block = block
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
footrest-0.1 lib/footrest/client.rb