Class: String

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

Instance Method Summary collapse

Instance Method Details

#remove_startingObject

Removes starting whitespace.



14
15
16
# File 'lib/quickpress.rb', line 14

def remove_starting
  dup.remove_starting!
end

#remove_starting!Object

Removes starting whitespace (destructive).



19
20
21
# File 'lib/quickpress.rb', line 19

def remove_starting!
  self.gsub(/^ +/, "")
end