class String

Public Instance Methods

demodulize_for_bm() click to toggle source
# File lib/string_ext.rb, line 2
def demodulize_for_bm
  path = self
  if i = path.rindex('::')
    path[(i+2)..-1]
  else
    path
  end
end