class Thor::Actions::InjectIntoFile

def say_status(behavior)

def say_status(behavior)
  status = if behavior == :invoke
    if flag == /\A/
       :prepend
    elsif flag == /\z/
      :append
    else
      :insert
    end
  else
    :subtract
  end
  super(status, config[:verbose])
end