Module: Enumerable
- Defined in:
- lib/sort_alphabetical/core_ext.rb
Instance Method Summary collapse
Instance Method Details
#sort_alphabetical ⇒ Object
2 3 4 |
# File 'lib/sort_alphabetical/core_ext.rb', line 2 def sort_alphabetical SortAlphabetical.sort(self) end |
#sort_alphabetical_by(&block) ⇒ Object
6 7 8 |
# File 'lib/sort_alphabetical/core_ext.rb', line 6 def sort_alphabetical_by(&block) SortAlphabetical.sort(self,&block) end |