Class: String

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

Instance Method Summary (collapse)

Instance Method Details

- (Object) proper_name

Capitalizes the first letter of each word.



47
48
49
# File 'lib/ward/ward_data.rb', line 47

def proper_name
  self.split(' ').map {|w| w.capitalize }.join(' ')
end