module OpenWeather

Constants

VERSION

Public Class Methods

client() click to toggle source
# File lib/open_weather.rb, line 25
def self.client
  Client.new
end
current(*location) click to toggle source
# File lib/open_weather.rb, line 9
def self.current(*location)
  client.weather(*location)
end
daily(*location) click to toggle source
# File lib/open_weather.rb, line 17
def self.daily(*location)
  client.daily_forecast(*location)
end
find(*location) click to toggle source
# File lib/open_weather.rb, line 21
def self.find(*location)
  client.find(*location)
end
forecast(*location) click to toggle source
# File lib/open_weather.rb, line 13
def self.forecast(*location)
  client.forecast(*location)
end