Skip to content

Commit 99e637c

Browse files
committed
Fixed rubocop line length issues
1 parent 5773dc1 commit 99e637c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

lib/open_weather/models/forecast/thirty_day/forecast.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ class Forecast < Model
1616
property 'speed' # Wind speed. Unit Default: meter/sec, Metric: meter/sec, Imperial: miles/hour
1717
property 'deg' # Wind direction, degrees (meteorological)
1818
property 'clouds' # Cloudiness, % (e.g. integer 78 means 78% cloudiness)
19-
property 'rain' # Precipitation volume, mm. Please note that only mm as units of measurement are available for this parameter
20-
property 'snow' # Snow volume, mm. Please note that only mm as units of measurement are available for this parameter
19+
property 'rain' # Precipitation volume, mm. Unit will only be in mm
20+
property 'snow' # Snow volume, mm. Unit will only be in mm
2121

2222
def initialize(args = nil, options = {})
2323
super args, options

lib/open_weather/models/forecast/thirty_day/temp.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ module Models
55
module Forecast
66
module ThirtyDay
77
class Temp < Model
8-
temperature_property 'day' # Day temperature. Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
9-
temperature_property 'min' # Min daily temperature. Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
10-
temperature_property 'max' # Max daily temperature. Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
11-
temperature_property 'night' # Night temperature. Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
12-
temperature_property 'eve' # Evening temperature. Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
13-
temperature_property 'morn' # Morning temperature. Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
8+
temperature_property 'day' # Day temperature. Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
9+
temperature_property 'min' # Min daily temperature. Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
10+
temperature_property 'max' # Max daily temperature. Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
11+
temperature_property 'night' # Night temperature. Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
12+
temperature_property 'eve' # Evening temperature. Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
13+
temperature_property 'morn' # Morning temperature. Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
1414
end
1515
end
1616
end

0 commit comments

Comments
 (0)