class Wunderground::Client

Public Class Methods

get(url, *options) click to toggle source
# File lib/wunderground/client.rb, line 4
def self.get(url, *options)
  uri = URI(Wunderground.domain + url)
  Net::HTTP.get_response(uri)
end