You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This version of the LaunchDarkly SDK has a minimum Ruby version of 2.2.6, or 9.1.6 for JRuby.
14
+
10
15
Quick setup
11
16
-----------
12
17
13
18
0. Install the Ruby SDK with `gem`
14
19
15
20
```shell
16
-
gem install ldclient-rb --prerelease
21
+
gem install ldclient-rb
17
22
```
18
-
Note: The `--prerelease` flag is there to satisfy the dependency of celluloid 0.18pre which we have tested extensively and have found stable in our use case. Unfortunately, the upstream provider has not promoted this version to stable yet. See [here](https://github.com/celluloid/celluloid/issues/762) This is not required for use in a Gemfile.
19
23
20
24
1. Require the LaunchDarkly client:
21
25
@@ -79,7 +83,7 @@ Note that this gem will automatically switch to using the Rails logger it is det
79
83
80
84
HTTPS proxy
81
85
------------
82
-
The Ruby SDK uses Faraday to handle all of its network traffic. Faraday provides built-in support for the use of an HTTPS proxy. If the HTTPS_PROXY environment variable is present then the SDK will proxy all network requests through the URL provided.
86
+
The Ruby SDK uses Faraday and Socketry to handle its network traffic. Both of these provide built-in support for the use of an HTTPS proxy. If the HTTPS_PROXY environment variable is present then the SDK will proxy all network requests through the URL provided.
83
87
84
88
How to set the HTTPS_PROXY environment variable on Mac/Linux systems:
0 commit comments