class Symbol

Make arrays of Symbols sortable

Public Instance Methods

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