/open_weather_client_ruby

Ruby client for open_weather api

Primary LanguageRuby

open_weather_client_ruby

Still in progress

For now returns the current weather and the forecast 5 days info from Atlanta,US.

require 'open_weather'

Current weather:

OpenWeather::Current.weather

Forecast:

OpenWeather::Forecast.weathers

Override City and Country by changing

module OpenWeather
  CITY = 'New City name'
  COUNTRY = 'New Country (us, uk, co)'
end