class Symbol

Make arrays of Symbols sortable

Public Instance Methods

<=>(other) click to toggle source
# File lib/mcollective/monkey_patches.rb, line 13
def <=>(other)
  self.to_s <=> other.to_s
end