class Faraday::Lazyable
Constants
- VERSION
Public Class Methods
new(app)
click to toggle source
# File lib/faraday/lazyable.rb, line 7 def initialize(app) @app = app end
Public Instance Methods
call(env)
click to toggle source
# File lib/faraday/lazyable.rb, line 11 def call(env) DummyResponse.new { @app.call(env) } end