{"id":20607708,"url":"https://github.com/open-feature/ruby-sdk-contrib","last_synced_at":"2026-04-01T17:29:46.235Z","repository":{"id":231187583,"uuid":"570369634","full_name":"open-feature/ruby-sdk-contrib","owner":"open-feature","description":"Community contributions for hooks and reference providers in Ruby","archived":false,"fork":false,"pushed_at":"2026-03-30T12:27:19.000Z","size":372,"stargazers_count":5,"open_issues_count":3,"forks_count":11,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-03-31T16:48:38.512Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://openfeature.dev","language":"Ruby","has_issues":true,"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/open-feature.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","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":"2022-11-25T02:38:16.000Z","updated_at":"2026-03-30T12:27:19.000Z","dependencies_parsed_at":"2026-01-28T12:02:40.446Z","dependency_job_id":null,"html_url":"https://github.com/open-feature/ruby-sdk-contrib","commit_stats":null,"previous_names":["open-feature/ruby-sdk-contrib"],"tags_count":36,"template":false,"template_full_name":null,"purl":"pkg:github/open-feature/ruby-sdk-contrib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-feature%2Fruby-sdk-contrib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-feature%2Fruby-sdk-contrib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-feature%2Fruby-sdk-contrib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-feature%2Fruby-sdk-contrib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/open-feature","download_url":"https://codeload.github.com/open-feature/ruby-sdk-contrib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-feature%2Fruby-sdk-contrib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290537,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: 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":[],"created_at":"2024-11-16T10:08:22.731Z","updated_at":"2026-04-01T17:29:46.227Z","avatar_url":"https://github.com/open-feature.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenFeature Ruby SDK Contributions\n\n[![CI](https://github.com/open-feature/ruby-sdk-contrib/actions/workflows/ruby.yml/badge.svg)](https://github.com/open-feature/ruby-sdk-contrib/actions/workflows/ruby.yml)\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Ruby](https://img.shields.io/badge/ruby-%3E%3D%203.4-red.svg)](https://www.ruby-lang.org/)\n\nCommunity-contributed [providers](https://openfeature.dev/docs/reference/concepts/provider) and [hooks](https://openfeature.dev/docs/reference/concepts/hooks) for the [OpenFeature Ruby SDK](https://github.com/open-feature/ruby-sdk).\n\n## Providers\n\n| Provider | Version | Description |\n|----------|---------|-------------|\n| [flagd](./providers/openfeature-flagd-provider) | 0.1.4 | gRPC-based [flagd](https://flagd.dev/) provider |\n| [Flagsmith](./providers/openfeature-flagsmith-provider) | 0.1.1 | [Flagsmith](https://flagsmith.com/) provider |\n| [Flipt](./providers/openfeature-flipt-provider) | 0.0.2 | [Flipt](https://www.flipt.io/) provider |\n| [GO Feature Flag](./providers/openfeature-go-feature-flag-provider) | 0.1.10 | [GO Feature Flag](https://gofeatureflag.org/) provider |\n| [Meta Provider](./providers/openfeature-meta_provider) | 0.0.5 | Combines multiple providers with strategy-based evaluation |\n| [OFREP](./providers/openfeature-ofrep-provider) | 0.1.0 | [OFREP](https://openfeature.dev/specification/appendix-c-ofrep/) (OpenFeature Remote Evaluation Protocol) provider |\n\n## Hooks\n\n| Hook | Version | Description |\n|------|---------|-------------|\n| [OpenTelemetry](./hooks/openfeature-otel-hook) | 0.1.0 | Traces and metrics via [OpenTelemetry](https://opentelemetry.io/) |\n\n## Supported Ruby Versions\n\nRuby \u003e= 3.4 (tested on 3.4 and 4.0)\n\n## Quick Start\n\nAdd the desired provider gem to your `Gemfile`:\n\n```ruby\ngem \"openfeature-flagd-provider\"\n```\n\nThen configure the OpenFeature SDK:\n\n```ruby\nrequire \"open_feature/sdk\"\nrequire \"openfeature/flagd/provider\"\n\nOpenFeature::SDK.configure do |config|\n  config.set_provider(OpenFeature::Flagd::Provider.new)\nend\n\nclient = OpenFeature::SDK.build_client\nvalue = client.fetch_boolean_value(flag_key: \"my-flag\", default_value: false)\n```\n\nSee each provider's README for detailed configuration options.\n\n## Releases\n\nThis repo uses [Release Please](https://github.com/googleapis/release-please) to release packages. Release Please sets up a running PR that tracks all changes for the library components, and maintains the versions according to [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/), generated when [PRs are merged](https://github.com/amannn/action-semantic-pull-request). When Release Please's running PR is merged, any changed artifacts are published.\n\n## Contributing\n\nPlease see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on how to contribute to this project.\n\n## License\n\nApache 2.0 - See [LICENSE](./LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopen-feature%2Fruby-sdk-contrib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopen-feature%2Fruby-sdk-contrib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopen-feature%2Fruby-sdk-contrib/lists"}