lib/solve/graph.rb in solve-0.5.0 vs lib/solve/graph.rb in solve-0.6.0

- old
+ new

@@ -155,13 +155,13 @@ self_artifacts.all? { |artifact| other_artifacts.include?(artifact) } && self_dependencies.all? { |dependency| other_dependencies.include?(dependency) } end alias_method :eql?, :== - private + private - # @return [Array<Solve::Artifact>] - def artifact_collection - @artifacts.collect { |name, artifact| artifact } - end + # @return [Array<Solve::Artifact>] + def artifact_collection + @artifacts.collect { |name, artifact| artifact } + end end end