⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby master
All Projects
Ruby
»
Ruby master
Overview
Activity
Roadmap
Issues
Repository
Like
Download (630 Bytes)
Bug #20853
» main.rb
keelerm84 (Matthew Keeler)
, 10/30/2024 06:50 PM
# frozen_string_literal: true
require
"launchdarkly-server-sdk"
td
=
LaunchDarkly
::
Integrations
::
TestData
.
data_source
td
.
update
(
td
.
flag
(
'sample-feature'
).
variation_for_all
(
true
))
ld_logger
=
Logger
.
new
(
$stdout
)
ld_logger
.
level
=
Logger
::
INFO
ld_config
=
LaunchDarkly
::
Config
.
new
({
logger:
ld_logger
,
data_source:
td
,
send_events:
false
})
@client
=
LaunchDarkly
::
LDClient
.
new
(
'this-does-not-matter'
,
ld_config
)
# Process.warmup
context_hash
=
{
key:
'anonymous'
,
kind:
'user'
,
anonymous:
true
}
@context
=
LaunchDarkly
::
LDContext
.
create
(
context_hash
)
puts
@client
.
variation
(
'sample-feature'
,
@context
,
false
).
inspect
« Previous
1
2
Next »
(1-1/2)
Loading...