Skip to content

Instantly share code, notes, and snippets.

@cwgem
Created July 28, 2011 17:04
Show Gist options
  • Select an option

  • Save cwgem/1111961 to your computer and use it in GitHub Desktop.

Select an option

Save cwgem/1111961 to your computer and use it in GitHub Desktop.
Comparableの使用例
class Employee
attr_accessor :first_name
attr_accessor :last_name
attr_accessor :monthly_sales
include Comparable
# 月間売上高で社員をソート
def <=>(other_employee)
other_employee.monthly_sales <=> @monthly_sales
end
def to_s
"#{@first_name} #{@last_name}: #{@monthly_sales}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment