class Mygen::Plugins::MygenGenerator

Public Instance Methods

call() click to toggle source
# File lib/mygen/plugins/mygen_generator.rb, line 9
def call
  puts "create generator named #{name}"
  make_template_tree(true)
  @bleh = "fish"
  @name = name
  b = binding
  parse_templates(b)
end
description() click to toggle source
# File lib/mygen/plugins/mygen_generator.rb, line 5
def description
  "Generates a new mygen generator"
end