Method: StringBuffer#initialize

Defined in:
lib/fOOrth/monkey_patch/string.rb

#initialize(text = "") ⇒ StringBuffer

Create a string buffer from an object. Make sure that object is a string and make sure that string is not frozen.



81
82
83
# File 'lib/fOOrth/monkey_patch/string.rb', line 81

def initialize(text="")
  super(text)
end