lib/solve/errors.rb in solve-3.1.1 vs lib/solve/errors.rb in solve-4.0.0
- old
+ new
@@ -47,10 +47,10 @@
def to_s
s = ""
s << "#{@message}\n"
s << "Missing artifacts: #{missing_artifacts.join(',')}\n" unless missing_artifacts.empty?
unless constraints_excluding_all_artifacts.empty?
- pretty = constraints_excluding_all_artifacts.map { |constraint| "(#{constraint[0]} #{constraint[1]})" }.join(',')
+ pretty = constraints_excluding_all_artifacts.map { |constraint| "(#{constraint[0]} #{constraint[1]})" }.join(",")
s << "Constraints that match no available version: #{pretty}\n"
end
s << "Demand that cannot be met: #{unsatisfiable_demand}\n" if unsatisfiable_demand
unless artifacts_with_no_satisfactory_version.empty?
s << "Artifacts for which there are conflicting dependencies: #{artifacts_with_no_satisfactory_version.join(',')}"