Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/ward/ward_data.rb
Instance Method Summary (collapse)
-
- (Object) proper_name
Capitalizes the first letter of each word.
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 |