This README would normally document whatever steps are necessary to get the application up and running.
Things you may want to cover:
-
Ruby version
-
System dependencies
-
Configuration
-
Database creation
-
Database initialization
-
How to run the test suite
-
Services (job queues, cache servers, search engines, etc.)
-
Deployment instructions
-
…
Please feel free to use a different markup language if you do not plan to run rake doc:app
.
<% @itinerary.events.each do |e| %> <hr>
<h3><%= e.start_time.strftime(“%I:%M”) %> to <%= e.end_time.strftime(“%I:%M”) %></h3> <h2><%= e.name.upcase %></h2> <h3><%= e.category.capitalize %></h3>
<h4><%= e.description %></h4>
<p><%= e.date.strftime(“%m/%d/%Y”) %></p>
<hr>
<% end %>