Class: Barometer::Query::Converter::ToWeatherId
- Inherits:
-
Object
- Object
- Barometer::Query::Converter::ToWeatherId
- Defined in:
- lib/barometer/query/converters/to_weather_id.rb
Class Method Summary collapse
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(query) ⇒ ToWeatherId
constructor
A new instance of ToWeatherId.
Constructor Details
#initialize(query) ⇒ ToWeatherId
Returns a new instance of ToWeatherId.
9 10 11 |
# File 'lib/barometer/query/converters/to_weather_id.rb', line 9 def initialize(query) @query = query end |
Class Method Details
.from ⇒ Object
5 6 7 |
# File 'lib/barometer/query/converters/to_weather_id.rb', line 5 def self.from [:geocode, :unknown] end |
Instance Method Details
#call ⇒ Object
13 14 15 16 17 18 |
# File 'lib/barometer/query/converters/to_weather_id.rb', line 13 def call return unless can_convert? weather_id = Service::ToWeatherId.call(@query) @query.add_conversion(:weather_id, weather_id) end |