Created
July 20, 2015 18:54
-
-
Save EminenceHC/6fba81952bf4a830ac85 to your computer and use it in GitHub Desktop.
Dynamically
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
def self.get_group_times(school_id, group_number) | |
school = School.find(school_id) | |
var = group_number.to_i | |
return school."g#{var}start" # I need this to not be a string value it should be: school.g1start | |
end |
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
Start Time: <%= School.get_group_times(9, 1) %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment