require 'thor/group' module Foodie module Generators class Recipe < Thor::Group include Thor::Actions def create_group empty_directory(group) end def copy_recipe template("recipe.txt", "#{group}/#{name}.txt") end argument :group, :type => :string argument :name, :type => :string end end end