Class: Htk::Apis::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/Htk/apis.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#nameObject

Returns the value of attribute name.


6
7
8
# File 'lib/Htk/apis.rb', line 6

def name
  @name
end

#urlObject

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