module Billme

Constants

VERSION

Public Class Methods

bill(&block) click to toggle source
# File lib/billme.rb, line 15
def self.bill(&block)
  factory = Factory.new
  factory.instance_eval &block
  factory.render
end