Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/core_extensions/string_promptify.rb
Instance Method Summary collapse
Instance Method Details
#promptify ⇒ Object
2 3 4 5 6 7 8 |
# File 'lib/core_extensions/string_promptify.rb', line 2 def promptify if self[-1].eql?(':') self else "#{self}:" end.titleize end |