Agile Web Development with Rails, Edition 4

8.6 Playtime 8.4 Iteration C4: Functional Testing

8.5 Iteration C5 - Caching

add a method to return the latest product

edit app/models/product.rb
  def self.latest
    Product.order(:updated_at).last
  end

8.6 Playtime 8.4 Iteration C4: Functional Testing