Module: BleacherApi::Config
- Defined in:
- lib/bleacher_api/config.rb
Class Method Summary collapse
Class Method Details
.token(token = nil) ⇒ Object
11 12 13 14 |
# File 'lib/bleacher_api/config.rb', line 11 def token(token=nil) @token = token unless token.nil? @token end |
.url(url = nil, ssl = false) ⇒ Object
5 6 7 8 9 |
# File 'lib/bleacher_api/config.rb', line 5 def url(url=nil, ssl=false) @url = url unless url.nil? protocol = ssl ? 'https' : 'http' @url || "#{protocol}://bleacherreport.com" end |