Project

aladtec

0.0
Low commit activity in last 3 years
A long-lived project that still receives updates
Retrieve schedules and events from the Aladtec API. Works with EMS Manager, Fire Manager, Zanager.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
>= 0
>= 0
>= 0

Runtime

>= 0
~> 0.11, >= 0.11.4
 Project Readme

Aladtec

Gem Version 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.client_id = ENV['ALADTEC_CLIENT_ID']
  config.client_secret = ENV['ALADTEC_CLIENT_SECRET']
  config.endpoint = ENV['ALADTEC_ENDPOINT']
end

Get members

client = Aladtec::Client.new
client.members

Get events

client.events(begin_time: Time.now, end_time: Time.now + 60 * 60 * 24)

Get schedules

client.schedules

Get scheduled time ranges

client.scheduled_range(begin_time: Time.new(2019,10,1), end_time: Time.new(2019,10,31))

Get members scheduled now

client.scheduled_now

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