launchdarkly-openfeature-server-sdk 0.0.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.release-please-manifest.json +1 -1
- data/.rubocop.yml +204 -201
- data/CHANGELOG.md +17 -0
- data/CODEOWNERS +2 -0
- data/CONTRIBUTING.md +58 -0
- data/Gemfile +6 -1
- data/PROVENANCE.md +49 -0
- data/README.md +2 -2
- data/SECURITY.md +5 -0
- data/docs/Makefile +26 -0
- data/docs/index.md +7 -0
- data/launchdarkly-openfeature-server-sdk.gemspec +7 -1
- data/lib/ldclient-openfeature/impl/context_converter.rb +147 -0
- data/lib/ldclient-openfeature/impl/details_converter.rb +86 -0
- data/lib/ldclient-openfeature/impl.rb +13 -0
- data/lib/ldclient-openfeature/provider.rb +127 -0
- data/lib/ldclient-openfeature/version.rb +1 -1
- data/lib/ldclient-openfeature.rb +3 -0
- data/release-please-config.json +15 -0
- metadata +45 -8
metadata
CHANGED
|
@@ -1,15 +1,42 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: launchdarkly-openfeature-server-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LaunchDarkly
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
-
dependencies:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: launchdarkly-server-sdk
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '8.4'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '8.4'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: openfeature-sdk
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 0.6.0
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 0.6.0
|
|
13
40
|
description: A LaunchDarkly provider for use with the OpenFeature SDK
|
|
14
41
|
email:
|
|
15
42
|
- team@launchdarkly.com
|
|
@@ -20,20 +47,31 @@ files:
|
|
|
20
47
|
- ".release-please-manifest.json"
|
|
21
48
|
- ".rspec"
|
|
22
49
|
- ".rubocop.yml"
|
|
50
|
+
- CHANGELOG.md
|
|
51
|
+
- CODEOWNERS
|
|
52
|
+
- CONTRIBUTING.md
|
|
23
53
|
- Gemfile
|
|
24
54
|
- LICENSE.txt
|
|
55
|
+
- PROVENANCE.md
|
|
25
56
|
- README.md
|
|
26
57
|
- Rakefile
|
|
58
|
+
- SECURITY.md
|
|
59
|
+
- docs/Makefile
|
|
60
|
+
- docs/index.md
|
|
27
61
|
- launchdarkly-openfeature-server-sdk.gemspec
|
|
28
62
|
- lib/ldclient-openfeature.rb
|
|
63
|
+
- lib/ldclient-openfeature/impl.rb
|
|
64
|
+
- lib/ldclient-openfeature/impl/context_converter.rb
|
|
65
|
+
- lib/ldclient-openfeature/impl/details_converter.rb
|
|
66
|
+
- lib/ldclient-openfeature/provider.rb
|
|
29
67
|
- lib/ldclient-openfeature/version.rb
|
|
68
|
+
- release-please-config.json
|
|
30
69
|
homepage: https://github.com/launchdarkly/openfeature-ruby-server
|
|
31
70
|
licenses: []
|
|
32
71
|
metadata:
|
|
33
72
|
homepage_uri: https://github.com/launchdarkly/openfeature-ruby-server
|
|
34
73
|
source_code_uri: https://github.com/launchdarkly/openfeature-ruby-server
|
|
35
74
|
changelog_uri: https://github.com/launchdarkly/openfeature-ruby-server/blob/main/CHANGELOG.md
|
|
36
|
-
post_install_message:
|
|
37
75
|
rdoc_options: []
|
|
38
76
|
require_paths:
|
|
39
77
|
- lib
|
|
@@ -41,15 +79,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
41
79
|
requirements:
|
|
42
80
|
- - ">="
|
|
43
81
|
- !ruby/object:Gem::Version
|
|
44
|
-
version: '3.
|
|
82
|
+
version: '3.4'
|
|
45
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
84
|
requirements:
|
|
47
85
|
- - ">="
|
|
48
86
|
- !ruby/object:Gem::Version
|
|
49
87
|
version: '0'
|
|
50
88
|
requirements: []
|
|
51
|
-
rubygems_version: 3.
|
|
52
|
-
signing_key:
|
|
89
|
+
rubygems_version: 3.6.9
|
|
53
90
|
specification_version: 4
|
|
54
91
|
summary: LaunchDarkly OpenFeature Server SDK
|
|
55
92
|
test_files: []
|