0.01
No commit activity in last 3 years
No release in over 3 years
An SDK for Pagerduty's API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

pagerduty-sdk

pagerduty-sdk is a Ruby Gem for communicating with the entire Pagerduty API. It was designed to be as fully object-oriented as possible. Although it is still under some construction, it is functional and ready for use.

I plan to do much more work on this gem, and your feedback is greatly appreciated!

Requirements

  • Ruby 1.9.3+
  • A Pagerduty account token

Installation

gem install pagerduty-sdk

Building/Installing a local gem

Rake tasks to build and install the gem:

rake buildgem
rake installgem

Or in one fell swoop

rake gem

Usage

require 'pagerduty'

pagerduty = Pagerduty.new(token: "#{token}", subdomain: "#{subdomain}")
#<Pagerduty:0x007f9a340fc410>

See YARD documentation for specific function usage.