Skip to content

Instantly share code, notes, and snippets.

View danfrost's full-sized avatar

Dan Frost danfrost

  • London, England
View GitHub Profile
module Forecast
# The farm is collected into this object.
class Farm
def initialize(name)
@name = name
@roles = []
end
def add_role(role)