Method: WeatherLink::HashWrapper#method_missing
- Defined in:
- lib/weatherlink/hash_wrapper.rb
#method_missing(symbol, *args) ⇒ Object (private)
16 17 18 19 20 |
# File 'lib/weatherlink/hash_wrapper.rb', line 16 def method_missing(symbol, *args) return data.fetch(symbol.to_s) if data.include?(symbol.to_s) super end |