class Shipwire::Configuration
Attributes
endpoint[RW]
logger[RW]
open_timeout[RW]
password[RW]
timeout[RW]
username[RW]
Public Class Methods
new()
click to toggle source
# File lib/shipwire/configuration.rb, line 10 def initialize @username = nil @password = nil @open_timeout = 2 @timeout = 5 @endpoint = "https://api.shipwire.com" @logger = false end