{"id":19001274,"url":"https://github.com/strongdm/strongdm-sdk-ruby","last_synced_at":"2026-02-26T02:24:02.453Z","repository":{"id":44247795,"uuid":"244699019","full_name":"strongdm/strongdm-sdk-ruby","owner":"strongdm","description":"strongDM SDK for the Ruby programming language.","archived":false,"fork":false,"pushed_at":"2026-02-19T14:58:17.000Z","size":4504,"stargazers_count":4,"open_issues_count":0,"forks_count":4,"subscribers_count":16,"default_branch":"master","last_synced_at":"2026-02-19T17:09:25.871Z","etag":null,"topics":["api","automation","ruby","ruby-programming-language","sdk","strongdm","strongdm-sdk"],"latest_commit_sha":null,"homepage":"https://www.rubydoc.info/gems/strongdm","language":"Ruby","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/strongdm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-03-03T17:27:44.000Z","updated_at":"2026-02-19T14:58:19.000Z","dependencies_parsed_at":"2024-04-09T20:44:28.034Z","dependency_job_id":"d3e41768-d0a0-4013-93cc-62443be663da","html_url":"https://github.com/strongdm/strongdm-sdk-ruby","commit_stats":{"total_commits":293,"total_committers":17,"mean_commits":"17.235294117647058","dds":0.6245733788395904,"last_synced_commit":"07687e72efc8785eb9de64ef2d27056c6f9e3413"},"previous_names":[],"tags_count":226,"template":false,"template_full_name":null,"purl":"pkg:github/strongdm/strongdm-sdk-ruby","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strongdm%2Fstrongdm-sdk-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strongdm%2Fstrongdm-sdk-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strongdm%2Fstrongdm-sdk-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strongdm%2Fstrongdm-sdk-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/strongdm","download_url":"https://codeload.github.com/strongdm/strongdm-sdk-ruby/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strongdm%2Fstrongdm-sdk-ruby/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29786981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T10:45:18.109Z","status":"ssl_error","status_checked_at":"2026-02-24T10:45:09.911Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","automation","ruby","ruby-programming-language","sdk","strongdm","strongdm-sdk"],"created_at":"2024-11-08T18:10:34.929Z","updated_at":"2026-02-26T02:24:02.438Z","avatar_url":"https://github.com/strongdm.png","language":"Ruby","readme":"# strongDM SDK for Ruby\n\nThis is the official [strongDM](https://www.strongdm.com/) SDK for the Ruby\nprogramming language.\n\nLearn more with our [📚strongDM API docs](https://docs.strongdm.com/references/api) or\n[📓browse the SDK reference](https://www.rubydoc.info/gems/strongdm).\n\n## Installation\n\n```bash\n$ gem install strongdm\n```\n\nstrongDM uses [semantic versioning](https://semver.org/). We do not guarantee\ncompatibility between major versions. Be sure to use version constraints to pin\nyour dependency to the desired major version of the strongDM SDK.\n\n## Authentication\n\nIf you don't already have them you will need to generate a set of API keys,\ninstructions are here: [API\nCredentials](https://docs.strongdm.com/references/api/api-keys)\n\nAdd the keys as environment variables; the SDK will need to access these keys\nfor every request.\n\n```bash\n$ export SDM_API_ACCESS_KEY=\u003cYOUR ACCESS KEY\u003e\n$ export SDM_API_SECRET_KEY=\u003cYOUR SECRET KEY\u003e\n```\n\n## List Users\n\nThe following code lists all registered users:\n\n```ruby\nrequire \"strongdm\"\n\nclient = SDM::Client.new(ENV['SDM_API_ACCESS_KEY'], ENV['SDM_API_SECRET_KEY'])\nusers = client.accounts.list('')\nusers.each do |user|\n\tp user\nend\n```\n\n## Useful Links\n\n- Documentation: [strongdm gem](https://www.rubydoc.info/gems/strongdm)\n- [Migrating from v2 to v3](https://github.com/strongdm/strongdm-sdk-ruby/releases/tag/v3.0.0)\n- [Migrating from Role Grants to Access Rules](https://github.com/strongdm/strongdm-sdk-ruby/wiki/Migrating-from-Role-Grants-to-Access-Rules)\n- Examples: [GitHub - strongdm/strongdm-sdk-ruby-examples](https://github.com/strongdm/strongdm-sdk-ruby-examples)\n  1.  [Managing Resources](https://github.com/strongdm/strongdm-sdk-ruby-examples/tree/master/1_managing_resources)\n  2.  [Managing Accounts](https://github.com/strongdm/strongdm-sdk-ruby-examples/tree/master/2_managing_accounts)\n  3.  [Managing Roles](https://github.com/strongdm/strongdm-sdk-ruby-examples/tree/master/3_managing_roles)\n  4.  [Managing Gateways](https://github.com/strongdm/strongdm-sdk-ruby-examples/tree/master/4_managing_gateways)\n  5.  [Auditing](https://github.com/strongdm/strongdm-sdk-ruby-examples/tree/master/5_auditing)\n  6.  [Managing Access Workflows](https://github.com/strongdm/strongdm-sdk-ruby-examples/tree/master/6_managing_workflows)\n\n## License\n\n[Apache 2](https://github.com/strongdm/strongdm-sdk-ruby/blob/master/LICENSE)\n\n## Contributing\n\nCurrently, we are not accepting pull requests directly to this repository, but\nour users are some of the most resourceful and ambitious folks out there. So, if\nyou have something to contribute, find a bug, or just want to give us some\nfeedback, please email \u003csupport@strongdm.com\u003e.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrongdm%2Fstrongdm-sdk-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstrongdm%2Fstrongdm-sdk-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrongdm%2Fstrongdm-sdk-ruby/lists"}