class Lump

Public Instance Methods

make(name, path='.') click to toggle source
# File lib/lump.rb, line 11
def make(name, path='.')
        puts "Building template from: " + name
        puts "Building it in path: " + path
end
new(name) click to toggle source
# File lib/lump.rb, line 6
def new(name)
        puts "Creating new template: " + name
end