# File lib/thor/actions/inject_into_file.rb, line 24
    def insert_into_file(destination, *args, &block)
      data = block_given? ? block : args.shift
      config = args.shift
      action InjectIntoFile.new(self, destination, data, config)
    end