class Yalphabetize::OrderCheckers::AlphabeticalThenCapitalizedLast
Public Instance Methods
Source
# File lib/yalphabetize/order_checkers/alphabetical_then_capitalized_last.rb, line 7 def compare(string, other_string) alphabetical_comparison(string, other_string).nonzero? || string.swapcase <=> other_string.swapcase end