module Blower

Top-level module for all things blower.

Constants

VERSION

Public Class Methods

plugin(name, &body) click to toggle source
# File lib/blower/plugin.rb, line 14
def self.plugin (name, &body)
  Class.new(Plugin, &body).tap do |klass|
    Context.send :define_method, name do
      klass.new(self)
    end
  end
end