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