class Bundler::Index

def dependencies_eql?(spec, other_spec)

def dependencies_eql?(spec, other_spec)
  deps       = spec.dependencies.select {|d| d.type != :development }
  other_deps = other_spec.dependencies.select {|d| d.type != :development }
  Set.new(deps) == Set.new(other_deps)
end