From aa821ad42ad3ddb6d600bb13929348bfe5318d46 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Mon, 5 Aug 2024 10:45:59 -0400 Subject: [PATCH] chore: Fill out attribute docs --- lib/ldclient-openfeature/provider.rb | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/ldclient-openfeature/provider.rb b/lib/ldclient-openfeature/provider.rb index c924f92..f339d43 100644 --- a/lib/ldclient-openfeature/provider.rb +++ b/lib/ldclient-openfeature/provider.rb @@ -6,10 +6,19 @@ module LaunchDarkly module OpenFeature class Provider + # + # Retrieve metadata information describing this provider. + # + # @return [::OpenFeature::SDK::Provider::ProviderMetadata] + # attr_reader :metadata # - # @return client [LaunchDarkly::LDClient] + # Access the underlying LaunchDarky client instance backing this provider. + # + # This is useful for accessing additional functionality not exposed by the provider. + # + # @return [LaunchDarkly::LDClient] # attr_reader :client