Last active
March 29, 2016 16:50
-
-
Save mindplace/64a5705fd064d52049e7fb5887abe9fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LocalCohort < GlobalCohort | |
attr_reader :city, :students, :global_cohort | |
def initialize(city, global_cohort) | |
@city, @global_cohort = city, global_cohort | |
@students = [] | |
end | |
def global_cohort_name | |
global_cohort.name | |
end | |
def add_student(student) | |
@students << student | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment