lib/yahoo_weather/atmosphere.rb in yahoo_weather-1.1.1 vs lib/yahoo_weather/atmosphere.rb in yahoo_weather-1.2.0

- old
+ new

@@ -3,11 +3,11 @@ STEADY = 'steady' RISING = 'rising' FALLING = 'falling' # lists all possible barometer constants - ALL = [ STEADY, RISING, FALLING ] + ALL = [STEADY, RISING, FALLING] end attr_reader :humidity, :visibility, :pressure, :barometer def initialize(payload) @@ -24,6 +24,6 @@ @barometer = Barometer::RISING when 2 @barometer = Barometer::FALLING end end -end \ No newline at end of file +end