Class: Barometer::ForecastIo::Query

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/barometer/forecast_io/query.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(query) ⇒ Query

Returns a new instance of Query.



12
13
14
15
# File 'lib/barometer/forecast_io/query.rb', line 12

def initialize(query)
  super
  @converted_query = convert_query
end

Instance Attribute Details

#converted_queryObject (readonly)

Returns the value of attribute converted_query.



6
7
8
# File 'lib/barometer/forecast_io/query.rb', line 6

def converted_query
  @converted_query
end

Class Method Details

.accepted_formatsObject



8
9
10
# File 'lib/barometer/forecast_io/query.rb', line 8

def self.accepted_formats
  [:coordinates]
end

Instance Method Details

#to_paramObject



17
18
19
# File 'lib/barometer/forecast_io/query.rb', line 17

def to_param
  @converted_query.q
end

#units_paramObject



21
22
23
# File 'lib/barometer/forecast_io/query.rb', line 21

def units_param
  {units: unit_type}
end