module FmLayout

Constants

VERSION

Public Class Methods

define_layout() { |layout| ... } click to toggle source
# File lib/fm_layout.rb, line 5
def self.define_layout
  layout = FmLayout.new
  yield(layout) if block_given?
  layout
end