Guest User

Untitled

a guest
Apr 26th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Module
  2. # Returns the local name for a module/class.
  3. #
  4. # ActiveSupport::CoreExtensions::Range.local_name # => "Range"
  5. def local_name
  6. name.gsub(/^.*::/, '')
  7. end
  8. end
Add Comment
Please, Sign In to add comment