module ActiveProxy

Constants

VERSION

Public Class Methods

call(proxy_key, cache_store, options = {}) { |fetcher| ... } click to toggle source
# File lib/active_proxy.rb, line 12
def call(proxy_key, cache_store, options = {})
  ActiveProxy::Fetcher.new(proxy_key, cache_store, options).send(:call) do |fetcher|
    yield fetcher
  end
end