Rails отображает нежелательные вещи из базы данных (sqlite3), например:
Recipes
Cookies
Text here
Cake
Text here
[#<Recipe id: 50, name: "Cookies", Recipe: "Text here", created_at: "2018-12-09 05:36:46", updated_at: "2018-12-09 05:36:46">, #<Recipe id: 51, name: "Cake", scam: "Text here", created_at: "2018-12-09 18:54:11", updated_at: "2018-12-09 18:54:11">]
Контроллер находится в здесь .
посмотреть код
<!DOCTYPE html>
<html>
<head>
<title>Recipe Masterlist</title>
</head>
<body>
<h1>Recipes</h1>
<%= @recipes.each do |s| %>
<span class="name"><%= s.name %></span>
<p><%= s.recipe %></p>
<% end %>
</body>
</html>