xmlblog (owner)

Revisions

gist: 160849 Download_button fork
public
Public Clone URL: git://gist.github.com/160849.git
Embed All Files: show embed
event.rb #
1
2
3
4
class Event < ActiveRecord::Base
  belongs_to :itinerary
  validates_presence_of :code, :port, :event_date
end
itinerary.rb #
1
2
3
4
5
6
7
8
9
10
11
class Itinerary < ActiveRecord::Base
  has_many :events
  
  def duration
    # ... omitted for clarity
  end
  
  def visited_ports
    # ... omitted for clarity
  end
end