module Stringlike

This mixin allows our markup objects (like RDiscount or RedCloth) to have all the normal string methods that are available.

Public Instance Methods

method_missing(method, *params) click to toggle source
# File lib/acts_as_markup/stringlike.rb, line 4
def method_missing(method, *params)
  self.to_s.send(method, *params)
end