Class: String

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

Instance Method Summary collapse

Instance Method Details

#remove_startingObject

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