Rails3 のビューでテーブルの題名クリックするとソートするメモ

(Rails3.2.12) プロジェクト作成 rails new sortable_table -T cd new sortable_table rails g scaffold Product name price:decimal released:date rake db:migrate 確認用初期データ投入 db/seeds.rb Product.delete_all Product.create(name: "Katsuo", price: 500, released: 30.days.ago.to_date) Product.create(nam…