render and redirect_to are functions defined inside ‘ApplicationController’ base class.
redirect_to controller: :leads, action: :new
puts 'shiva'
# Output
Redirected to http://localhost:3000/leads/new
shiva
render text: 'this is sample text'
puts 'shiva'
# Output
Rendered text template (0.0ms)
shiva
Advertisements