How do you add Ruby code inside Rails views and have its result outputted in the HTML file?
1. Insert Ruby code inside standard HTML files and surround it with <% %>. The web server will handle the rest.
2.Create an embedded Ruby file (.html.erb) and surround the Ruby code with <% %>
3.Put the code in an.rb. file and include it in a tag of an HTML file.
4.Create an embedded Ruby file (.html.erb) and surround the Ruby code with <%= %>.
Answer:4
Posted Date:-2022-09-17 04:43:56