# File lib/active_support/inflector/inflections.rb, line 96 def clear(scope = :all) case scope when :all @plurals, @singulars, @uncountables = [], [], [] else instance_variable_set "@#{scope}", [] end end