module Mastiff

When a generator is invoked, each public method in the generator is executed sequentially in the order that it is defined.
http://guides.rubyonrails.org/generators.html

require 'rails/generators'

When a generator is invoked, each public method in the generator is executed sequentially in the order that it is defined.
http://guides.rubyonrails.org/generators.html

require 'rails/generators'

null_uploader.rb

null_worker.rb

Constants

VERSION

Public Class Methods

configure() { |self| ... } click to toggle source

Yield self on setup for nice config blocks

# File lib/mastiff.rb, line 40
def self.configure(&block)
  yield self
end