Sha256: 3886aed79b5ed35c3457206da748ba034afb8b8613f0064349f62e8dfadcb56a
Contents?: true
Size: 501 Bytes
Versions: 3
Compression:
Stored size: 501 Bytes
Contents
module AddressFinder class Configuration attr_accessor :api_key attr_accessor :api_secret attr_accessor :hostname attr_accessor :port attr_accessor :proxy_host attr_accessor :proxy_port attr_accessor :proxy_user attr_accessor :proxy_password attr_accessor :timeout attr_accessor :default_country def initialize self.hostname = 'api.addressfinder.io' self.port = 443 self.timeout = 10 self.default_country = 'nz' end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
addressfinder-1.2.0 | lib/addressfinder/configuration.rb |
addressfinder-1.1.2 | lib/addressfinder/configuration.rb |
addressfinder-1.1.1 | lib/addressfinder/configuration.rb |