Austin

Results 1 issues of Austin

Create method for finding current weather by [zipcode](http://openweathermap.org/current#zip). **api.rb** ``` #Zip format : 33704,US #Usage: OpenWeather::Current.zip('33704,Us') def zip(zip, options ={}) new(options.merge(zip: zip)).retrieve end ```