Releases: apialerts/apialerts-ruby
Releases · apialerts/apialerts-ruby
1.0.0 - First release
First release of the API Alerts Ruby SDK
gem install apialerts
require 'apialerts'
ApiAlerts.configure('your-api-key')
ApiAlerts.send(ApiAlerts::Event.new(message: 'Deploy complete'))- Supports min ruby versions of 3.3 and higher, support for Ruby 4.0
- Module singleton (
configure,send,send_async) plus a constructableApiAlerts::Client - Fire-and-forget
send(never raises) andsend_asyncreturning aSendResult Eventwith message, channel, event, title, tags, link, and data- Optional per-call
api_key:override - No third-party runtime dependencies (uses net/http from the standard library)
1.0.0.alpha.1 Prerelease
First pre-release of the API Alerts Ruby SDK, published to validate the release pipeline ahead of 1.0.0.
gem install apialerts --pre
require 'apialerts'
ApiAlerts.configure('your-api-key')
ApiAlerts.send(ApiAlerts::Event.new(message: 'Deploy complete'))- Module singleton (
configure,send,send_async) plus a constructableApiAlerts::Client - Fire-and-forget
send(never raises) andsend_asyncreturning aSendResult Eventwith message, channel, event, title, tags, link, and data- Optional per-call
api_key:override - No third-party runtime dependencies (uses net/http from the standard library)