The singularize method in the i package does little more than trim trailing "s" characters, which leads to incorrect component & file names when the component generator runs.
Using camelize directly instead of classify, removes singularize from the transform, and puts a little more responsibility on the author, but I think this is ultimately better.
The
singularize
method in thei
package does little more than trim trailing"s"
characters, which leads to incorrect component & file names when thecomponent
generator runs.Using
camelize
directly instead ofclassify
, removessingularize
from the transform, and puts a little more responsibility on the author, but I think this is ultimately better.Closes #86