manzhikov/yahoo_weather

View on GitHub
lib/yahoo_weather/location.rb

Summary

Maintainability
A
0 mins
Test Coverage
class YahooWeather::Location
  attr_reader :city, :region, :country

  def initialize(payload)
    @city    = payload['city']
    @region  = payload['region']
    @country = payload['country']
  end
end