Exception: Pangrid::PluginDependencyError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/pangrid/plugin.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, gems) ⇒ PluginDependencyError

Returns a new instance of PluginDependencyError.



9
10
11
# File 'lib/pangrid/plugin.rb', line 9

def initialize(name, gems)
  @name, @gems = name, gems
end

Instance Attribute Details

#gemsObject

Returns the value of attribute gems.



7
8
9
# File 'lib/pangrid/plugin.rb', line 7

def gems
  @gems
end

#nameObject

Returns the value of attribute name.



7
8
9
# File 'lib/pangrid/plugin.rb', line 7

def name
  @name
end