Sha256: cc5c906309297f30fe4ace761424b21cada2e45df88ff892f59f1ef7a267f602
Contents?: true
Size: 607 Bytes
Versions: 6
Compression:
Stored size: 607 Bytes
Contents
# strongDM SDK for Ruby The official strongDM SDK for the Ruby programming language. ## Quick Start First, install the gem: ```bash $ gem install strongdm ``` Next, go to https://app.strongdm.com and create an API key. Set the `SDM_API_ACCESS_KEY` and `SDM_API_SECRET_KEY` environment variables. ```bash $ export SDM_API_ACCESS_KEY=<YOUR ACCESS KEY> $ export SDM_API_SECRET_KEY=<YOUR SECRET KEY> ``` Run some example code. ```ruby require "strongdm" client = SDM::Client.new(ENV['SDM_API_ACCESS_KEY'], ENV['SDM_API_SECRET_KEY']) users = client.accounts.list('') users.each do |user| p user end ```
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
strongdm-1.0.7 | README.md |
strongdm-1.0.5 | README.md |
strongdm-1.0.3 | README.md |
strongdm-1.0.2 | README.md |
strongdm-1.0.1 | README.md |
strongdm-1.0.0 | README.md |