Sha256: 20a07ee8c2ff9ce00afa3bc7fc57171ce6603ef746ad73ab3cb70870d68cd021
Contents?: true
Size: 713 Bytes
Versions: 1
Compression:
Stored size: 713 Bytes
Contents
module Loopiator class Configuration attr_accessor :host, :port, :path attr_accessor :use_ssl, :timeout attr_accessor :username, :password attr_accessor :proxy_host, :proxy_port, :proxy_user, :proxy_password def initialize self.host = "api.loopia.se" self.port = 443 self.path = "/RPCSERV" self.use_ssl = true self.timeout = 180 self.username = nil self.password = nil self.proxy_host = nil self.proxy_port = nil self.proxy_user = nil self.proxy_password = nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
loopiator-0.3.0 | lib/loopiator/configuration.rb |