Add min_version to X11Dependency inspect string

This commit is contained in:
Jack Nagel 2014-07-02 15:44:54 -05:00
parent 9106f221cb
commit cabc451ca8

View File

@ -38,4 +38,8 @@ class X11Dependency < Requirement
def eql?(other)
super && min_version == other.min_version
end
def inspect
"#<#{self.class.name}: #{name.inspect} #{tags.inspect} min_version=#{min_version}>"
end
end