Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/string_ext.rb
Instance Method Summary collapse
Instance Method Details
#demodulize_for_bm ⇒ Object
2 3 4 5 6 7 8 9 |
# 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 |