Blog

show.erb for Testing Sinatra Ruby Framework CRUD Operations with RSpec and Capybara Gems
Posted on August 10, 2015 in Ruby, Sinatra by Matt Jennings

See this post for a full describe of files used in a Sinatra Ruby framework for CRUD (Create Read Update Delete) operations with RSpec and Capybara testing.

/views/projects/show.erb

<!doctype>
<html>
<head>
  <title>Show the <%= @project.name %> Project</title>
  <link rel="stylesheet" type="text/css" href="../css/styles.css" />
</head>

<body>

<div id="wrapper">

  <h1>Show the <%= @project.name %> Project</h1>

  <ul id="projects-list">
        <li><strong>Name:</strong> <%= @project.name %><br /><strong>Description:</strong> <%= @project.description %><br />
          <a href="/projects/<%= @project.id %>/edit">&raquo; Edit Project</a></li>
  </ul>

  <p>&nbsp;</p>

  <p class="important"><a href="/projects">&raquo; Show All Projects</a></p>

</div>

</body>
</html>

Leave a Reply

To Top ↑