Aladtec

Build Status Inline docs

A Ruby client library for the Aladtec FireManager API.

Installation

Add this line to your application's Gemfile:

gem 'aladtec'

And then execute:

$ bundle

Or install it yourself as:

$ gem install aladtec

Usage

Configure the gem with your credentials:

Aladtec.configure do |config|
  config.acc_key = ENV['ALADTEC_ACC_KEY']
  config.acc_id = ENV['ALADTEC_ACC_ID']
  config.endpoint = ENV['ALADTEC_ENDPOINT']
end

Get members

client = Aladtec::Client.new
client.members

Get events

client.events(begin_date: Date.today)

Get schedules

client.schedules

Refer to the documentation for more detailed usage.

Contributing

  1. Fork it ( http://github.com/travisdahlke/aladtec/fork )
  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