Sha256: 1576c3ad61faf723041c8c41c6c65848b582c642012ccf023e6737c3d49f304d

Contents?: true

Size: 860 Bytes

Versions: 2

Compression:

Stored size: 860 Bytes

Contents

require 'restfulie/common'

module Restfulie
  module Client
    autoload :MasterDelegator, 'restfulie/client/master_delegator'
    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'
    autoload :Feature, 'restfulie/client/feature'
    autoload :Dsl, 'restfulie/client/dsl'
    
    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'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
restfulie-1.0.0.beta1 lib/restfulie/client.rb
restfulie-0.1.0.beta1 lib/restfulie/client.rb