class Scale::DSL

Public Instance Methods

run() { |builder| ... } click to toggle source
# File lib/scale/dsl.rb, line 3
def run
  DSLBuilder.new.tap do |builder|
    yield builder
  end.to_xml
end