Module: Fixcase
- Included in:
- String
- Defined in:
- lib/fixcase.rb,
lib/fixcase/version.rb
Constant Summary collapse
- VERSION =
"1.0.0"
Instance Method Summary collapse
Instance Method Details
#fixcase ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/fixcase.rb', line 6 def fixcase if [upcase,downcase].include?(self) titleize else self end end |