модель / situation.rb
class Situation < ActiveRecord::Base
default_scope :order => 'created_at desc'
end
Контроллеры / situations_controller.rb
class SituationsController < ActionController::Base
def index
@situations = Situation.all
end
end
Вид / ситуации / index.html.erb
<h1>Situations</h1>
<%= render @situations %>
Вид / ситуации / _situation.html.erb
<h2><%= situation.name -%></h2>
<p><%= situation.description -%></p>