Sha256: d6c069b3096e09485a8196268df2197d61a0bb380d8ababbf307d07a61ff8f3e

Contents?: true

Size: 740 Bytes

Versions: 2

Compression:

Stored size: 740 Bytes

Contents

require 'restfulie/common'

module Restfulie
  module Client
    autoload :HTTP, 'restfulie/client/http'
    autoload :Configuration, 'restfulie/client/configuration'
    autoload :EntryPoint, 'restfulie/client/entry_point'
    autoload :Base, 'restfulie/client/base'
    autoload :Mikyung, 'restfulie/client/mikyung'
    autoload :Cache, 'restfulie/client/cache'
    
    mattr_accessor :cache_provider, :cache_store

    Restfulie::Client.cache_store = ActiveSupport::Cache::MemoryStore.new
    Restfulie::Client.cache_provider = Restfulie::Client::Cache::Basic.new

  end
end

require 'restfulie/client/ext/http_ext'
require 'restfulie/client/ext/atom_ext'
require 'restfulie/client/ext/json_ext'
require 'restfulie/client/ext/xml_ext'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
restfulie-0.9.3 lib/restfulie/client.rb
restfulie-0.9.1 lib/restfulie/client.rb