Class: LaunchDarkly::Interfaces::Plugins::PluginMetadata
- Inherits:
-
Object
- Object
- LaunchDarkly::Interfaces::Plugins::PluginMetadata
- Defined in:
- lib/ldclient-rb/interfaces/plugins.rb
Overview
Metadata about a plugin implementation.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
A name representing the plugin instance.
Instance Method Summary collapse
-
#initialize(name) ⇒ PluginMetadata
constructor
A new instance of PluginMetadata.
Constructor Details
#initialize(name) ⇒ PluginMetadata
Returns a new instance of PluginMetadata.
81 82 83 |
# File 'lib/ldclient-rb/interfaces/plugins.rb', line 81 def initialize(name) @name = name end |
Instance Attribute Details
#name ⇒ String (readonly)
A name representing the plugin instance
79 80 81 |
# File 'lib/ldclient-rb/interfaces/plugins.rb', line 79 def name @name end |