In rails if you were to render static pages you would use a class like below:
class StaticPagesController < ApplicationController
def home
end
def about
end
end
how does the ApplicationController process these functions so as to produce a get request? And what is the difference between the function processing and when the functions are named after HTTP verbs and they route accordingly?