module FlyingTable
Constants
- VERSION
Public Class Methods
create(args)
click to toggle source
# File lib/flying_table.rb, line 6 def self.create(args) TableMaker.create(args) end
destroy(*args)
click to toggle source
# File lib/flying_table.rb, line 7 def self.destroy(*args) TableMaker.destroy(args) end
with(tables,&block)
click to toggle source
# File lib/flying_table.rb, line 8 def self.with(tables,&block) TableMaker.new(tables, &block) end