Fix warning under Ruby 2.2

This commit is contained in:
Jack Nagel 2014-06-09 14:56:22 -05:00
parent e3f082c294
commit 14aa1de33c

View File

@ -16,6 +16,7 @@ class Option
alias_method :to_str, :to_s
def <=>(other)
return unless Option === other
name <=> other.name
end