Method: Ranking::SetMethods#to_a

Defined in:
lib/ranking/set_methods.rb

#to_aObject



85
86
87
88
89
90
91
92
93
# File 'lib/ranking/set_methods.rb', line 85

def to_a
  super.sort do |a,b|
    if scores[a] == scores[b]
      a <=> b
    else
      scores[b] <=> scores[a]
    end
  end
end