Module: StringManipulation
- Defined in:
- lib/args-parser.rb
Class Method Summary collapse
- .capitalize(content) ⇒ Object
- .downcase(content) ⇒ Object
- .size(content) ⇒ Object
- .uppercase(content) ⇒ Object
Class Method Details
.capitalize(content) ⇒ Object
10 11 12 |
# File 'lib/args-parser.rb', line 10 def self.capitalize(content) content.capitalize end |
.downcase(content) ⇒ Object
6 7 8 |
# File 'lib/args-parser.rb', line 6 def self.downcase(content) content.downcase end |
.size(content) ⇒ Object
14 15 16 |
# File 'lib/args-parser.rb', line 14 def self.size(content) content.size end |
.uppercase(content) ⇒ Object
2 3 4 |
# File 'lib/args-parser.rb', line 2 def self.uppercase(content) content.upcase end |