class Module
Public Instance Methods
Source
# File lib/yard/core_ext/module.rb, line 8 def class_name name.split("::").last end
Returns the class name of a full module namespace path
@example
module A::B::C; class_name end # => "C"
@return [String] the last part of a module path