class Sass::CSS
def initialize(template, options = {})
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