Class: Faraday::Builder::Handler
Overview
borrowed from ActiveSupport::Dependencies::Reference & ActionDispatch::MiddlewareStack::Middleware
Constant Summary collapse
- @@constants =
Hash.new { |h, k| h[k] = k.respond_to?(:constantize) ? k.constantize : Object.const_get(k) }
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #adapter? ⇒ Boolean
- #build(app) ⇒ Object
-
#initialize(klass, *args, &block) ⇒ Handler
constructor
A new instance of Handler.
- #inspect ⇒ Object
- #klass ⇒ Object
Constructor Details
#initialize(klass, *args, &block) ⇒ Handler
Returns a new instance of Handler.
23 24 25 26 27 |
# File 'lib/faraday/builder.rb', line 23 def initialize(klass, *args, &block) @name = klass.to_s @@constants[@name] = klass if klass.respond_to?(:name) @args, @block = args, block end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
21 22 23 |
# File 'lib/faraday/builder.rb', line 21 def args @args end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
21 22 23 |
# File 'lib/faraday/builder.rb', line 21 def name @name end |
Instance Method Details
#==(other) ⇒ Object
32 33 34 35 36 37 38 39 40 |
# File 'lib/faraday/builder.rb', line 32 def ==(other) if other.is_a? Handler self.name == other.name elsif other.respond_to? :name klass == other else @name == other.to_s end end |
#adapter? ⇒ Boolean
46 47 48 |
# File 'lib/faraday/builder.rb', line 46 def adapter? klass.respond_to?(:adapter?) && klass.adapter? end |
#build(app) ⇒ Object
42 43 44 |
# File 'lib/faraday/builder.rb', line 42 def build(app) klass.new(app, *@args, &@block) end |
#inspect ⇒ Object
30 |
# File 'lib/faraday/builder.rb', line 30 def inspect() @name end |
#klass ⇒ Object
29 |
# File 'lib/faraday/builder.rb', line 29 def klass() @@constants[@name] end |