module Tilt

Public: A Tilt template to compile Stylus stylesheets.

Examples

template = Tilt::StylusTemplate.new { |t| File.read('app.styl') }
template.render # => the compiled CSS from the app.styl file.

Options should assigned on the template constructor.
template = Tilt::StylusTemplate.new(compress: true) { |t| File.read('app.styl') }
template.render # => the compiled CSS with compression enabled.