module Enumerable
Public Instance Methods
sort_alphabetical()
click to toggle source
# File lib/sort_alphabetical/core_ext.rb, line 2 def sort_alphabetical SortAlphabetical.sort(self) end
sort_alphabetical_by(&block)
click to toggle source
# File lib/sort_alphabetical/core_ext.rb, line 6 def sort_alphabetical_by(&block) SortAlphabetical.sort(self,&block) end