class CowProxy::String

Wrapper class for String

Public Instance Methods

to_s() click to toggle source

returns the wrapped object.

needed to used wrapped string inside interpolation

@return the wrapped object.

# File lib/cow_proxy/string.rb, line 9
def to_s
  __getobj__
end
to_str() click to toggle source

returns the wrapped object.

needed to used wrapped string as parameter for send

@return the wrapped object.

# File lib/cow_proxy/string.rb, line 18
def to_str
  __getobj__
end