- Notifications
You must be signed in to change notification settings - Fork16
Ruby SDK client for Split Software
License
splitio/ruby-client
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This SDK is designed to work with Split, the platform for controlled rollouts, which serves features to your users via feature flags to manage your complete customer experience.
The Ruby SDK support Ruby version 2.5.0 or later and JRuby or 9.1.17 o later.
Also the Ruby SDK has been tested as a standalone app as well as using the following web servers:
- Puma
- Passenger
- Unicorn
For other setups, please reach out tosupport@split.io.
Below is a simple example that describes the instantiation and most basic usage of our SDK:
require'splitclient-rb'split_factory=SplitIoClient::SplitFactory.new('YOUR_SDK_KEY')split_client=split_factory.clientbeginsplit_client.block_until_readyrescueSplitIoClient::SDKBlockerTimeoutExpiredExceptionputs'SDK is not ready. Decide whether to continue or abort execution'endtreatment=split_client.get_treatment('CUSTOMER_ID','FEATURE_FLAG_NAME');iftreatment =='on'# insert code here to show on treatmentelsiftreatment =='off'# insert code here to show off treatmentelse# insert your control treatment code hereend
For multi-process environments you also need to setup Split Synchronizer. SeeSharing state: Redis integration
Please refer toour official docs to learn about all the functionality provided by our SDK and the configuration options available for tailoring it to your current application setup.
The Split team monitors all issues submitted to thisissue tracker. We encourage you to use this issue tracker to submit any bug reports, feedback, and feature enhancements. We'll do our best to respond in a timely manner.
Please seeContributors Guide to find all you need to submit a Pull Request (PR).
Licensed under the Apache License, Version 2.0. See:Apache License.
Split is the leading Feature Delivery Platform for engineering teams that want to confidently deploy features as fast as they can develop them. Split’s fine-grained management, real-time monitoring, and data-driven experimentation ensure that new features will improve the customer experience without breaking or degrading performance. Companies like Twilio, Salesforce, GoDaddy and WePay trust Split to power their feature delivery.
To learn more about Split, contacthello@split.io, or get started with feature flags for free athttps://www.split.io/signup.
Split has built and maintains SDKs for:
- .NETGithubDocs
- AndroidGithubDocs
- AngularGithubDocs
- GOGithubDocs
- iOSGithubDocs
- JavaGithubDocs
- JavaScriptGithubDocs
- JavaScript for BrowserGithubDocs
- NodeGithubDocs
- PHPGithubDocs
- PythonGithubDocs
- ReactGithubDocs
- React NativeGithubDocs
- ReduxGithubDocs
- RubyGithubDocs
For a comprehensive list of open source projects visit ourGithub page.
Learn more about Split:
Visitsplit.io/product for an overview of Split, or visit our documentation athelp.split.io for more detailed information.
About
Ruby SDK client for Split Software