Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/togo/support.rb
Instance Method Summary collapse
Instance Method Details
#humanize ⇒ Object
7 8 9 |
# File 'lib/togo/support.rb', line 7 def humanize self.tr('_',' ') end |
#titleize ⇒ Object
3 4 5 |
# File 'lib/togo/support.rb', line 3 def titleize self.gsub(/\b\w/){$&.upcase} end |