# File lib/chef/recipe.rb, line 90
    def tag(*tags)
      if tags.length > 0
        tags.each do |tag|
          run_context.node[:tags] << tag unless run_context.node[:tags].include?(tag)
        end
        run_context.node[:tags]
      else
        run_context.node[:tags]
      end
    end