openfeature-sdk 0.0.3 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa5a6e99d67eb65e8880d796b8785091679e353eabe7f619282d0aa30a14541d
4
- data.tar.gz: 1e56499af1beac4c98245c40fcd840aad5a6327dc010320b76320f5f29065026
3
+ metadata.gz: 5e0ab3e707e31b5e81d0a804445506bf8cf08b4be649f6f3eee1f38c61b5c286
4
+ data.tar.gz: e4fa9d61a1c04de6b058c62ea31b4d359f251cf17c3a2323366118baaf64dea7
5
5
  SHA512:
6
- metadata.gz: 7e93027418e168d45dfdb874e9eafd9e8d94c479d0e31f4db09fad10ce6b454b0beb01e5fd42217d4f68ab0ecfb1be2402f673b02bc0399ff0469258a4b82558
7
- data.tar.gz: 4ee653114169ef9ee3af004b65ca6fca4df1674f07cdb1493e28737667fa4d30f2ab1e7245de0b11627c9ae43fcfe175b4e24d6b5b40e0534b38a6bfabb0878a
6
+ metadata.gz: 2b2e10cc74a605dabbc540cb3eeaa15d887f4173170bd4189526cae141312fdd2f71cbf3f02a41693b6b9eb76716ae8896680072f90f0ce9e89a39aed46c121d
7
+ data.tar.gz: 696d50f1ff5b0632a77cfb4956fe3fe9b20132d2a39f0850a7b6514c154cf8ae93722bab2348b15443e6b7c6fd1ad354b053828ad7c95140873713025fbf5cd5
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.0.3"
2
+ ".": "0.1.1"
3
3
  }
data/.rspec CHANGED
@@ -1,3 +1,4 @@
1
+ -I lib
1
2
  --format documentation
2
3
  --color
3
4
  --require spec_helper
data/.rubocop.yml CHANGED
@@ -12,6 +12,17 @@ Style/StringLiteralsInInterpolation:
12
12
 
13
13
  Layout/LineLength:
14
14
  Max: 120
15
+ Exclude:
16
+ - 'spec/**/*.rb'
17
+
18
+ Metrics/BlockLength:
19
+ Exclude:
20
+ - 'spec/**/*.rb'
21
+ - 'openfeature-sdk.gemspec'
15
22
 
16
23
  Gemspec/RequireMFA:
17
24
  Enabled: false
25
+
26
+ Style/DocumentDynamicEvalDefinition:
27
+ # TODO re-enable after figuring out what it actually wants
28
+ Enabled: false
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.2
1
+ 3.2.2
data/.simplecov ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "simplecov-cobertura"
4
+
5
+ SimpleCov.start do
6
+ add_filter "/spec/"
7
+ if ENV["CI"] == "true"
8
+ formatter SimpleCov::Formatter::CoberturaFormatter
9
+ else
10
+ formatter SimpleCov::Formatter::HTMLFormatter
11
+ end
12
+ end
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.1](https://github.com/open-feature/ruby-sdk/compare/v0.1.0...v0.1.1) (2023-09-13)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * OpenFeature::SDK::Configuration uses concurrent-ruby gem even though it doesn't depend on it ([#61](https://github.com/open-feature/ruby-sdk/issues/61)) ([c3c1222](https://github.com/open-feature/ruby-sdk/commit/c3c12226a21e43d62358562f4008a4a44a10e72b))
9
+
10
+ ## [0.1.0](https://github.com/open-feature/ruby-sdk/compare/v0.0.3...v0.1.0) (2022-12-15)
11
+
12
+
13
+ ### Features
14
+
15
+ * Add client object ([#34](https://github.com/open-feature/ruby-sdk/issues/34)) ([92f8d0d](https://github.com/open-feature/ruby-sdk/commit/92f8d0d4bf693bf74d0f076621f3453f11d4ca65))
16
+ * OpenFeature::SDK.configure ([#41](https://github.com/open-feature/ruby-sdk/issues/41)) ([7587799](https://github.com/open-feature/ruby-sdk/commit/75877997dcb49aeb38a4969734df87b2845e1e6a))
17
+ * **spec:** Add API implementation ([#32](https://github.com/open-feature/ruby-sdk/issues/32)) ([d6b0922](https://github.com/open-feature/ruby-sdk/commit/d6b0922a54e9cb714c44dfe58ddab01356f6916b))
18
+
3
19
  ## [0.0.3](https://github.com/open-feature/ruby-sdk/compare/v0.0.2...v0.0.3) (2022-11-11)
4
20
 
5
21
 
data/CODEOWNERS ADDED
@@ -0,0 +1,6 @@
1
+ # These owners will be the default owners for everything in
2
+ # the repo. Unless a later match takes precedence
3
+ #
4
+ # Managed by Peribolos: https://github.com/open-feature/community/blob/main/config/open-feature/sdk-ruby/workgroup.yaml
5
+ #
6
+ * @open-feature/sdk-ruby-maintainers
data/Gemfile CHANGED
@@ -4,3 +4,5 @@ source "https://rubygems.org"
4
4
 
5
5
  # Specify your gem's dependencies in openfeature-sdk.gemspec
6
6
  gemspec
7
+
8
+ gem "concurrent-ruby", require: "concurrent"
data/Gemfile.lock CHANGED
@@ -1,34 +1,39 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- openfeature-sdk (0.0.3)
4
+ openfeature-sdk (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  ast (2.4.2)
10
+ concurrent-ruby (1.2.2)
10
11
  diff-lcs (1.5.0)
11
- json (2.6.2)
12
- parallel (1.22.1)
13
- parser (3.1.2.1)
12
+ docile (1.4.0)
13
+ json (2.6.3)
14
+ markly (0.10.0)
15
+ parallel (1.23.0)
16
+ parser (3.2.2.3)
14
17
  ast (~> 2.4.1)
18
+ racc
19
+ racc (1.7.1)
15
20
  rainbow (3.1.1)
16
21
  rake (13.0.6)
17
- regexp_parser (2.6.0)
18
- rexml (3.2.5)
22
+ regexp_parser (2.8.1)
23
+ rexml (3.2.6)
19
24
  rspec (3.12.0)
20
25
  rspec-core (~> 3.12.0)
21
26
  rspec-expectations (~> 3.12.0)
22
27
  rspec-mocks (~> 3.12.0)
23
- rspec-core (3.12.0)
28
+ rspec-core (3.12.2)
24
29
  rspec-support (~> 3.12.0)
25
- rspec-expectations (3.12.0)
30
+ rspec-expectations (3.12.3)
26
31
  diff-lcs (>= 1.2.0, < 2.0)
27
32
  rspec-support (~> 3.12.0)
28
- rspec-mocks (3.12.0)
33
+ rspec-mocks (3.12.6)
29
34
  diff-lcs (>= 1.2.0, < 2.0)
30
35
  rspec-support (~> 3.12.0)
31
- rspec-support (3.12.0)
36
+ rspec-support (3.12.1)
32
37
  rubocop (1.37.1)
33
38
  json (~> 2.3)
34
39
  parallel (~> 1.10)
@@ -39,10 +44,19 @@ GEM
39
44
  rubocop-ast (>= 1.23.0, < 2.0)
40
45
  ruby-progressbar (~> 1.7)
41
46
  unicode-display_width (>= 1.4.0, < 3.0)
42
- rubocop-ast (1.23.0)
43
- parser (>= 3.1.1.0)
44
- ruby-progressbar (1.11.0)
45
- unicode-display_width (2.3.0)
47
+ rubocop-ast (1.29.0)
48
+ parser (>= 3.2.1.0)
49
+ ruby-progressbar (1.13.0)
50
+ simplecov (0.22.0)
51
+ docile (~> 1.1)
52
+ simplecov-html (~> 0.11)
53
+ simplecov_json_formatter (~> 0.1)
54
+ simplecov-cobertura (2.1.0)
55
+ rexml
56
+ simplecov (~> 0.19)
57
+ simplecov-html (0.12.3)
58
+ simplecov_json_formatter (0.1.4)
59
+ unicode-display_width (2.4.2)
46
60
 
47
61
  PLATFORMS
48
62
  arm64-darwin-21
@@ -55,10 +69,14 @@ PLATFORMS
55
69
  x86_64-linux
56
70
 
57
71
  DEPENDENCIES
72
+ concurrent-ruby
73
+ markly
58
74
  openfeature-sdk!
59
75
  rake (~> 13.0)
60
76
  rspec (~> 3.12.0)
61
77
  rubocop (~> 1.37.1)
78
+ simplecov (~> 0.22.0)
79
+ simplecov-cobertura (~> 2.1.0)
62
80
 
63
81
  BUNDLED WITH
64
82
  2.3.25
data/README.md CHANGED
@@ -14,9 +14,10 @@ We support multiple data types for flags (numbers, strings, booleans, objects) a
14
14
 
15
15
  | Ruby Version | OS |
16
16
  | ----------- | ----------- |
17
- | Ruby 2.7.6 | Windows, MacOS, Linux |
18
- | Ruby 3.0.4 | Windows, MacOS, Linux |
19
- | Ruby 3.1.2 | Windows, MacOS, Linux |
17
+ | Ruby 2.7.8 | Windows, MacOS, Linux |
18
+ | Ruby 3.0.6 | Windows, MacOS, Linux |
19
+ | Ruby 3.1.4 | Windows, MacOS, Linux |
20
+ | Ruby 3.2.2 | Windows, MacOS, Linux |
20
21
 
21
22
 
22
23
  ## Installation
@@ -50,20 +51,20 @@ end
50
51
  client = OpenFeature::SDK.build_client(name: "my-app")
51
52
 
52
53
  # fetching boolean value feature flag
53
- bool_value = client.fetch_boolean_value(flag_key: 'boolean_flag', default_value: false);
54
+ bool_value = client.fetch_boolean_value(flag_key: 'boolean_flag', default_value: false)
54
55
 
55
56
  # fetching string value feature flag
56
- string_value = client.fetch_string_value(flag_key: 'string_flag', default_value: false);
57
+ string_value = client.fetch_string_value(flag_key: 'string_flag', default_value: false)
57
58
 
58
59
  # fetching number value feature flag
59
- float_value = client.fetch_number_value(flag_key: 'number_value', default_value: 1.0);
60
- integer_value = client.fetch_number_value(flag_key: 'number_value', default_value: 1);
60
+ float_value = client.fetch_number_value(flag_key: 'number_value', default_value: 1.0)
61
+ integer_value = client.fetch_number_value(flag_key: 'number_value', default_value: 1)
61
62
 
62
63
  # get an object value
63
- object = client.fetch_object_value('object_value', JSON.dump({ name: 'object'}));
64
+ object = client.fetch_object_value(flag_key: 'object_value', default_value: JSON.dump({ name: 'object'}))
64
65
  ```
65
66
 
66
- For complete documentation, visit: https://docs.openfeature.dev/docs/category/concepts
67
+ For complete documentation, visit: https://openfeature.dev/docs/category/concepts
67
68
 
68
69
  ## Contributing
69
70
 
data/Rakefile CHANGED
@@ -7,6 +7,9 @@ RSpec::Core::RakeTask.new(:spec)
7
7
 
8
8
  require "rubocop/rake_task"
9
9
 
10
- RuboCop::RakeTask.new
10
+ RuboCop::RakeTask.new do |task|
11
+ task.options = ["--parallel"]
12
+ task.options << "--color" if ENV["CI"] == "true"
13
+ end
11
14
 
12
15
  task default: %i[spec rubocop]
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "forwardable"
4
+ require "singleton"
5
+
6
+ require_relative "configuration"
7
+ require_relative "client"
8
+ require_relative "metadata"
9
+ require_relative "provider/no_op_provider"
10
+
11
+ module OpenFeature
12
+ module SDK
13
+ # API Initialization and Configuration
14
+ #
15
+ # Represents the entry point to the API, including configuration of <tt>Provider</tt>,<tt>Hook</tt>,
16
+ # and building the <tt>Client</tt>
17
+ #
18
+ # To use the SDK, you can optionally configure a <tt>Provider</tt>, with <tt>Hook</tt>
19
+ #
20
+ # OpenFeature::SDK::API.instance.configure do |config|
21
+ # config.provider = NoOpProvider.new
22
+ # end
23
+ #
24
+ # If no provider is specified, the <tt>NoOpProvider</tt> is set as the default <tt>Provider</tt>.
25
+ # Once the SDK has been configured, a client can be built
26
+ #
27
+ # client = OpenFeature::SDK::API.instance.build_client(name: 'my-open-feature-client')
28
+ class API
29
+ include Singleton
30
+ extend Forwardable
31
+
32
+ def_delegator :@configuration, :provider
33
+ def_delegator :@configuration, :hooks
34
+ def_delegator :@configuration, :context
35
+
36
+ def configuration
37
+ @configuration ||= Configuration.new
38
+ end
39
+
40
+ def configure(&block)
41
+ return unless block_given?
42
+
43
+ block.call(configuration)
44
+ end
45
+
46
+ def build_client(name: nil, version: nil)
47
+ client_options = Metadata.new(name: name, version: version).freeze
48
+ provider = Provider::NoOpProvider.new if provider.nil?
49
+ Client.new(provider: provider, client_options: client_options, context: context)
50
+ end
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module OpenFeature
4
+ module SDK
5
+ # TODO: Write documentation
6
+ #
7
+ class Client
8
+ RESULT_TYPE = %i[boolean string number object].freeze
9
+ SUFFIXES = %i[value details].freeze
10
+
11
+ attr_reader :metadata
12
+
13
+ attr_accessor :hooks
14
+
15
+ def initialize(provider:, client_options: nil, context: nil)
16
+ @provider = provider
17
+ @metadata = client_options
18
+ @context = context
19
+ @hooks = []
20
+ end
21
+
22
+ RESULT_TYPE.each do |result_type|
23
+ SUFFIXES.each do |suffix|
24
+ class_eval <<-RUBY, __FILE__, __LINE__ + 1
25
+ # def fetch_boolean_details(flag_key:, default_value:, evaluation_context: nil)
26
+ # result = @provider.fetch_boolean_value(flag_key: flag_key, default_value: default_value, evaluation_context: evaluation_context)
27
+ # end
28
+ def fetch_#{result_type}_#{suffix}(flag_key:, default_value:, evaluation_context: nil)
29
+ result = @provider.fetch_#{result_type}_value(flag_key: flag_key, default_value: default_value, evaluation_context: evaluation_context)
30
+ #{"result.value" if suffix == :value}
31
+ end
32
+ RUBY
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "concurrent"
4
+
5
+ require_relative "api"
6
+
7
+ module OpenFeature
8
+ module SDK
9
+ # Represents the configuration object for the global API where <tt>Provider</tt>, <tt>Hook</tt>,
10
+ # and <tt>Context</tt> are configured.
11
+ # This class is not meant to be interacted with directly but instead through the <tt>OpenFeature::SDK.configure</tt>
12
+ # method
13
+ class Configuration
14
+ extend Forwardable
15
+
16
+ attr_accessor :context, :provider, :hooks
17
+
18
+ def_delegator :@provider, :metadata
19
+
20
+ def initialize
21
+ @hooks = []
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ module OpenFeature
4
+ module SDK
5
+ # Metadata structure that defines general metadata relating to a <tt>Provider</tt> or <tt>Client</tt>
6
+ #
7
+ # Within the Metadata structure, the following attribute readers are available:
8
+ #
9
+ # * <tt>name</tt> - Defines the name of the structure
10
+ #
11
+ # * <tt>version</tt> - Allows you to specify version of the Metadata structure
12
+ #
13
+ # Usage:
14
+ #
15
+ # metadata = Metadata.new(name: 'name-for-metadata', version: 'v1.1.3')
16
+ # metadata.name # 'name-for-metadata'
17
+ # metadata.version # version
18
+ # metadata_two = Metadata.new(name: 'name-for-metadata')
19
+ # metadata_two == metadata # true - equality based on values
20
+ class Metadata
21
+ attr_reader :name, :version
22
+
23
+ def initialize(name:, version: nil)
24
+ @name = name
25
+ @version = version
26
+ end
27
+
28
+ def ==(other)
29
+ raise ArgumentError("Expected comparison to be between Metadata object") unless other.is_a?(Metadata)
30
+
31
+ @name == other.name && @version == other.version
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,64 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "../metadata"
4
+
5
+ # rubocop:disable Lint/UnusedMethodArgument
6
+ module OpenFeature
7
+ module SDK
8
+ module Provider
9
+ # Defines the default provider that is set if no provider is specified.
10
+ #
11
+ # To use <tt>NoOpProvider</tt>, it can be set during the configuration of the SDK
12
+ #
13
+ # OpenFeature::SDK.configure do |config|
14
+ # config.provider = NoOpProvider.new
15
+ # end
16
+ #
17
+ # Within the <tt>NoOpProvider</tt>, the following methods exist
18
+ #
19
+ # * <tt>fetch_boolean_value</tt> - Retrieve feature flag boolean value
20
+ #
21
+ # * <tt>fetch_string_value</tt> - Retrieve feature flag string value
22
+ #
23
+ # * <tt>fetch_number_value</tt> - Retrieve feature flag number value
24
+ #
25
+ # * <tt>fetch_object_value</tt> - Retrieve feature flag object value
26
+ #
27
+ class NoOpProvider
28
+ REASON_NO_OP = "No-op"
29
+ NAME = "No-op Provider"
30
+
31
+ attr_reader :metadata
32
+
33
+ ResolutionDetails = Struct.new(:value, :reason, :variant, :error_code, :error_message)
34
+
35
+ def initialize
36
+ @metadata = Metadata.new(name: NAME).freeze
37
+ end
38
+
39
+ def fetch_boolean_value(flag_key:, default_value:, evaluation_context: nil)
40
+ no_op(default_value)
41
+ end
42
+
43
+ def fetch_string_value(flag_key:, default_value:, evaluation_context: nil)
44
+ no_op(default_value)
45
+ end
46
+
47
+ def fetch_number_value(flag_key:, default_value:, evaluation_context: nil)
48
+ no_op(default_value)
49
+ end
50
+
51
+ def fetch_object_value(flag_key:, default_value:, evaluation_context: nil)
52
+ no_op(default_value)
53
+ end
54
+
55
+ private
56
+
57
+ def no_op(default_value)
58
+ ResolutionDetails.new(value: default_value, reason: REASON_NO_OP)
59
+ end
60
+ end
61
+ end
62
+ end
63
+ end
64
+ # rubocop:enable Lint/UnusedMethodArgument
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OpenFeature
4
4
  module SDK
5
- VERSION = "0.0.3"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
@@ -1,10 +1,24 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "sdk/version"
4
+ require_relative "sdk/api"
4
5
 
5
6
  module OpenFeature
7
+ # TODO: Add documentation
8
+ #
6
9
  module SDK
7
- class Error < StandardError; end
8
- # Your code goes here...
10
+ class << self
11
+ def method_missing(method_name, *args, **kwargs, &block)
12
+ if API.instance.respond_to?(method_name)
13
+ API.instance.send(method_name, *args, **kwargs, &block)
14
+ else
15
+ super
16
+ end
17
+ end
18
+
19
+ def respond_to_missing?(method_name, include_private = false)
20
+ API.instance.respond_to?(method_name, include_private) || super
21
+ end
22
+ end
9
23
  end
10
24
  end
data/renovate.json CHANGED
@@ -1,6 +1,18 @@
1
1
  {
2
2
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
3
  "extends": [
4
- "config:base"
4
+ "config:base",
5
+ "helpers:pinGitHubActionDigests"
6
+ ],
7
+ "packageRules": [
8
+ {
9
+ "matchUpdateTypes": ["minor", "patch"],
10
+ "matchCurrentVersion": "!/^0/",
11
+ "automerge": true
12
+ },
13
+ {
14
+ "matchManagers": ["github-actions"],
15
+ "automerge": true
16
+ }
5
17
  ]
6
18
  }
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openfeature-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenFeature Authors
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-11 00:00:00.000000000 Z
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: markly
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rake
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -52,6 +66,34 @@ dependencies:
52
66
  - - "~>"
53
67
  - !ruby/object:Gem::Version
54
68
  version: 1.37.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.22.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.22.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov-cobertura
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 2.1.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 2.1.0
55
97
  description: Ruby SDK for an the specifications for the open standard of feature flag
56
98
  management
57
99
  email:
@@ -64,7 +106,9 @@ files:
64
106
  - ".rspec"
65
107
  - ".rubocop.yml"
66
108
  - ".ruby-version"
109
+ - ".simplecov"
67
110
  - CHANGELOG.md
111
+ - CODEOWNERS
68
112
  - CODE_OF_CONDUCT.md
69
113
  - Gemfile
70
114
  - Gemfile.lock
@@ -72,6 +116,11 @@ files:
72
116
  - README.md
73
117
  - Rakefile
74
118
  - lib/openfeature/sdk.rb
119
+ - lib/openfeature/sdk/api.rb
120
+ - lib/openfeature/sdk/client.rb
121
+ - lib/openfeature/sdk/configuration.rb
122
+ - lib/openfeature/sdk/metadata.rb
123
+ - lib/openfeature/sdk/provider/no_op_provider.rb
75
124
  - lib/openfeature/sdk/version.rb
76
125
  - release-please-config.json
77
126
  - renovate.json
@@ -93,14 +142,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
93
142
  requirements:
94
143
  - - ">="
95
144
  - !ruby/object:Gem::Version
96
- version: 2.7.6
145
+ version: '2.7'
97
146
  required_rubygems_version: !ruby/object:Gem::Requirement
98
147
  requirements:
99
148
  - - ">="
100
149
  - !ruby/object:Gem::Version
101
150
  version: '0'
102
151
  requirements: []
103
- rubygems_version: 3.3.7
152
+ rubygems_version: 3.4.10
104
153
  signing_key:
105
154
  specification_version: 4
106
155
  summary: OpenFeature SDK for Ruby