Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/apostrophize.rb

Instance Method Summary collapse

Instance Method Details

#apostrophizeObject



2
3
4
5
6
# File 'lib/apostrophize.rb', line 2

def apostrophize
  res = ''
  last = self.split('').last
  last == 's' ? self + "'" :  self + "'s"
end