Class: Interdependence::DependencySet

Inherits:
Set
  • Object
show all
Defined in:
lib/interdependence/dependency_set.rb

Overview

Extension of Set that manages our dependencies

Instance Method Summary collapse

Instance Method Details

#cloneDependencySet

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Clone a DependencySet and its members

Returns:



11
12
13
# File 'lib/interdependence/dependency_set.rb', line 11

def clone
  self.class.new(map(&:clone))
end