class TowerDataApi::Configuration
Public Class Methods
api_key()
click to toggle source
# File lib/towerdata_api/configuration.rb 13 def self.api_key 14 @@api_key 15 end
api_key=(api_key)
click to toggle source
# File lib/towerdata_api/configuration.rb 9 def self.api_key= api_key 10 @@api_key = api_key 11 end
begin() { |self| ... }
click to toggle source
# File lib/towerdata_api/configuration.rb 41 def self.begin 42 yield self 43 end
bulk_timeout=(timeout)
click to toggle source
# File lib/towerdata_api/configuration.rb 33 def self.bulk_timeout= timeout 34 @@bulk_timeout = timeout 35 end
ca_file()
click to toggle source
# File lib/towerdata_api/configuration.rb 21 def self.ca_file 22 @@ca_file 23 end
ca_file=(ca_file)
click to toggle source
# File lib/towerdata_api/configuration.rb 17 def self.ca_file= ca_file 18 @@ca_file = ca_file 19 end
timeout()
click to toggle source
# File lib/towerdata_api/configuration.rb 29 def self.timeout 30 @@timeout 31 end
timeout=(timeout)
click to toggle source
# File lib/towerdata_api/configuration.rb 25 def self.timeout= timeout 26 @@timeout = timeout 27 end