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