All Projects → splitio → ruby-client

splitio / ruby-client

Licence: other
Ruby SDK client for Split Software

Programming Languages

ruby
36898 projects - #4 most used programming language
c
50402 projects - #5 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to ruby-client

php-client
PHP SDK client for Split Software
Stars: ✭ 14 (-36.36%)
Mutual labels:  split, feature-flags, feature-toggles, ab-testing, feature-toggle, splitsoftware, control-rollout
python-client
Python SDK client for Split Software
Stars: ✭ 12 (-45.45%)
Mutual labels:  split, feature-flags, feature-toggles, ab-testing, splitsoftware, control-rollout
react-client
React JS SDK client for Split Software
Stars: ✭ 23 (+4.55%)
Mutual labels:  split, feature-flags, feature-toggles, ab-testing, splitsoftware
java-client
Java SDK client for Split Software
Stars: ✭ 20 (-9.09%)
Mutual labels:  feature-flags, feature-toggles, ab-testing, splitsoftware
laravel-rollout
A package to integrate rollout into your Laravel project.
Stars: ✭ 23 (+4.55%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
Javascript Client
NodeJS and Browser SDK client for Split Software
Stars: ✭ 30 (+36.36%)
Mutual labels:  split, feature-flags, feature-toggles
flagsmith-js-client
Javascript Client for Flagsmith. Ship features with confidence using feature flags and remote config. Host yourself or use our hosted version at https://www.flagsmith.com/
Stars: ✭ 42 (+90.91%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
toggler
toggler is a feature flag service to decouple deployment, feature enrollment and experiments
Stars: ✭ 27 (+22.73%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
featurehub
FeatureHub - cloud native feature flags, A/B testing and remote configuration service. Real-time streaming feature updates. Provided with Java, JavaScript, Go, .Net, Android and Flutter SDKs.
Stars: ✭ 136 (+518.18%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
ld-scheduler
Schedule Launch Darkly flags on or off
Stars: ✭ 14 (-36.36%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
Flagr
Flagr is a feature flagging, A/B testing and dynamic configuration microservice
Stars: ✭ 1,776 (+7972.73%)
Mutual labels:  feature-flags, feature-toggles, ab-testing
doorkeeper
A Feature Toggle for PHP
Stars: ✭ 16 (-27.27%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
eight ball
Ruby gem for querying feature flags
Stars: ✭ 17 (-22.73%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
ld-redux
A library to integrate launch darkly with react redux
Stars: ✭ 33 (+50%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
Unleash
Unleash is the open source feature toggle service.
Stars: ✭ 4,679 (+21168.18%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
Flipper
🐬 Beautiful, performant feature flags for Ruby.
Stars: ✭ 2,732 (+12318.18%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
Tweek
Tweek - an open source feature manager
Stars: ✭ 268 (+1118.18%)
Mutual labels:  feature-flags, feature-toggles, ab-testing
js-sdk
JavaScript frontend SDK for ConfigCat. ConfigCat is a hosted feature flag service: https://configcat.com. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.
Stars: ✭ 21 (-4.55%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
Toggler
Feature toggle library for PHP
Stars: ✭ 18 (-18.18%)
Mutual labels:  feature-flags, feature-toggles
vue-feature-toggle
No description or website provided.
Stars: ✭ 55 (+150%)
Mutual labels:  feature-flags, feature-toggle

Split SDK for Ruby

Build Status

Overview

This SDK is designed to work with Split, the platform for controlled rollouts, which serves features to your users via a Split feature flag to manage your complete customer experience.

Twitter Follow

Compatibility

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 to [email protected].

Getting started

Below is a simple example that describes the instantiation and most basic usage of our SDK:

require 'splitclient-rb'

split_factory = SplitIoClient::SplitFactory.new('SDK_API_KEY')
split_client = split_factory.client

begin  
  split_client.block_until_ready  
rescue SplitIoClient::SDKBlockerTimeoutExpiredException
  puts 'SDK is not ready. Decide whether to continue or abort execution'  
end  

treatment = split_client.get_treatment('CUSTOMER_ID', 'SPLIT_NAME');

if treatment == 'on'
  # insert code here to show on treatment
elsif treatment == 'off'
  # insert code here to show off treatment
else
  # insert your control treatment code here
end

For multi-process environments you also need to setup Split Synchronizer. See Sharing state: Redis integration

Please refer to our 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.

Submitting issues

The Split team monitors all issues submitted to this issue 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.

Contributing

Please see Contributors Guide to find all you need to submit a Pull Request (PR).

License

Licensed under the Apache License, Version 2.0. See: Apache License.

About Split

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, contact [email protected], or get started with feature flags for free at https://www.split.io/signup.

Split has built and maintains SDKs for:

For a comprehensive list of open source projects visit our Github page.

Learn more about Split:

Visit split.io/product for an overview of Split, or visit our documentation at help.split.io for more detailed information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].