shawn42/gamebox

View on GitHub
lib/gamebox/lib/symbol_ext.rb

Summary

Maintainability
A
0 mins
Test Coverage
unless Symbol.include? Comparable
  class Symbol
    include Comparable
    def <=>(other)
      self.to_i <=> other.to_i
    end
  end
end