module Styler

Constants

VERSION

Public Class Methods

new(&block) click to toggle source
# File lib/styler.rb, line 10
def self.new(&block)
  Collection.new.tap do |c|
    c.instance_eval(&block)
  end
end