class Sass::CSS

def initialize(template, options = {})

to a Sass string when +render+ is called.
Creates a new instance of Sass::CSS that will compile the given document
def initialize(template, options = {})
  if template.is_a? IO
    template = template.read
  end
  @options = options
  @template = StringScanner.new(template)
end