Class: Htk::Apis::Base
- Inherits:
-
Object
- Object
- Htk::Apis::Base
- Defined in:
- lib/Htk/apis.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
- #connection(&block) ⇒ Object
-
#initialize(name, url) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(name, url) ⇒ Base
Returns a new instance of Base.
8 9 10 11 |
# File 'lib/Htk/apis.rb', line 8 def initialize(name, url) @name = name @url = url end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/Htk/apis.rb', line 6 def name @name end |
#url ⇒ Object
Returns the value of attribute url.
6 7 8 |
# File 'lib/Htk/apis.rb', line 6 def url @url end |
Instance Method Details
#connection(&block) ⇒ Object
13 14 15 16 17 18 19 20 21 |
# File 'lib/Htk/apis.rb', line 13 def connection(&block) Faraday.new(url) do |faraday| faraday.use ::Faraday::Request::Multipart faraday.use ::Faraday::Request::UrlEncoded faraday.adapter ::Faraday::Adapter::NetHttp block.call(faraday) if block_given? end end |