I want to make just simple back End to my first Ruby application, so I want to make header and include it to all of the pages in this back end
So how I can make require or include to simple Html page in ruby (this page just I want to set some links in it)
in Php we just make page and require or include it by
require("my_page_name.php")
or
include("my_page_name.php")
How we can make that in Ruby on Rails.