Barometer::WeatherBug

Build Status Gem Version Code Climate

A wrapper for the WeatherBug weather API. This wrapper is barometer compatiable and can be used with or without barometer.

Usage

This wrapper was designed to be used via Barometer, or on its own.

Directly

By using this wrapper directly, you lose any Barometer aggregation and failover capabilities. Barometer is still dependency to provide a framework for query conversion, weather service integration and data processing.

query = Barometer::Query.new('42.7243,-73.6927')
keys = {client_id: 'client_id', client_secret: 'client_secret'}

result = Barometer::WeatherBug.call(query, keys: keys)
puts result.current.temperature.c

via Barometer

Barometer is a weather service framework, providing aggregation and failover capabilities. To make WeatherBug available to Barometer, you must register it as an available weather service.

Barometer::WeatherService.register(:weather_bug, Barometer::WeatherBug)

Then follow the instructions provided by Barometer.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Copyright (c) 2009-2014 Mark Gangl. See LICENSE for details.