Class: Barometer::Noaa::CurrentQuery

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/barometer/noaa/current_query.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(query) ⇒ CurrentQuery

Returns a new instance of CurrentQuery.



12
13
14
15
# File 'lib/barometer/noaa/current_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/noaa/current_query.rb', line 6

def converted_query
  @converted_query
end

Class Method Details

.accepted_formatsObject



8
9
10
# File 'lib/barometer/noaa/current_query.rb', line 8

def self.accepted_formats
  [:noaa_station_id]
end

Instance Method Details

#to_paramObject



17
18
19
# File 'lib/barometer/noaa/current_query.rb', line 17

def to_param
  converted_query.q
end