Class: LaunchDarkly::Interfaces::Plugins::PluginMetadata

Inherits:
Object
  • Object
show all
Defined in:
lib/ldclient-rb/interfaces/plugins.rb

Overview

Metadata about a plugin implementation.

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#nameString (readonly)

A name representing the plugin instance

Returns:

  • (String)


79
80
81
# File 'lib/ldclient-rb/interfaces/plugins.rb', line 79

def name
  @name
end