class RuboCop::Cop::Style::AlignHash::AlignmentOfValues

def separator_delta(first_pair, current_separator, key_delta)

def separator_delta(first_pair, current_separator, key_delta)
  if current_separator.is?(':')
    0 # Colon follows directly after key
  else
    hash_rocket_delta(first_pair, current_separator) - key_delta
  end
end