module RendertronRuby::Connection

Public Instance Methods

connection() click to toggle source
# File lib/rendertron_ruby/connection.rb, line 3
def connection
  options = {
    url: "#{scheme}://#{host}"
  }

  Faraday.new(options)
end