Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/quickpress.rb
Instance Method Summary collapse
-
#remove_starting ⇒ Object
Removes starting whitespace.
-
#remove_starting! ⇒ Object
Removes starting whitespace (destructive).
Instance Method Details
#remove_starting ⇒ Object
Removes starting whitespace.
13 14 15 |
# File 'lib/quickpress.rb', line 13 def remove_starting dup.remove_starting! end |
#remove_starting! ⇒ Object
Removes starting whitespace (destructive).
18 19 20 |
# File 'lib/quickpress.rb', line 18 def remove_starting! self.gsub(/^ +/, "") end |