Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/apostrophize.rb
Instance Method Summary collapse
Instance Method Details
#apostrophize ⇒ Object
2 3 4 5 6 |
# File 'lib/apostrophize.rb', line 2 def apostrophize res = '' last = self.split('').last last == 's' ? self + "'" : self + "'s" end |