==(other)
Instance Public methods
Equivalent to String#==
. Returns true
if the
class name and other
are equal, otherwise false
.
class BlogPost extend ActiveModel::Naming end BlogPost.model_name == 'BlogPost' # => true BlogPost.model_name == 'Blog Post' # => false
Please login to continue.