My Resume in Ruby Code, v1.0

                class JerryChai

                def initialize
                @birthday = 10/01/1989
                @personality = :awesome
                end

                def education
                High_School = {
                name: "Mission San Jose High School",
                years_attended: "2004-2008",
                GPA: "4.02"
            }

            University = {
            name: "University of California, San Diego",
            years_attended: "2008-2013",
            GPA: "3.34",
            Major: "Biochemistry",
            Minor: "Economics"
        }

        return "Bachelor of Science"
        end

        def languages
        English = "Fluent"
        Chinese = "Fluent"
        Ruby = "Beginner"
        HTML5/CSS3 = "Beginner"
        Medical_Jargon = "Intermediate"
        end

        def skills
        Learning = "Fast"
        Adaptation = "Fast"
        Basketball = "Horrible"
        Listening = "Good"
        Innovation = "Above average"
        end

        def traits
        Patience = "Excellent"
        Work_Ethics = "Great"
        Humor = "Decent"
        end

        def hobbies
        @hobbies = ["Travelling", "Improv Comedy", "Reading"] << "Programming"
        end

        end