abunashir/wego

View on GitHub
lib/wego/configuration.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Wego
  class Configuration
    attr_accessor :api_host
    attr_accessor :api_key
    attr_accessor :api_code

    def initialize
      @api_host = "http://api.wego.com/hotels/api"
    end

    def api_keys
      { key: api_key, ts_code: api_code }
    end
  end

  def self.configuration
    @configuration ||= Configuration.new
  end

  def self.configuration=(config)
    @configuration = config
  end

  def self.configure
    yield configuration
  end
end