no?(question)
protected
Helper to test if the user does NOT say yes(y)?
Example
capify! if no?("Will you be using vlad to deploy your application?")
# File railties/lib/rails_generator/generators/applications/app/template_runner.rb, line 352
def no?(question)
!yes?(question)
end