class SCSSBeautifier::Formatters::Base

Attributes

options[RW]

Public Class Methods

new(options = {}) click to toggle source
# File lib/scss_beautifier/formatters/base.rb, line 9
def initialize(options = {})
  @options = options
end
visit(root, options = {}) click to toggle source
# File lib/scss_beautifier/formatters/base.rb, line 5
def self.visit(root, options = {})
  new(options).send(:visit, root)
end