Skip to content

Instantly share code, notes, and snippets.

View generalzhou's full-sized avatar

Jack Zhou generalzhou

View GitHub Profile

Instructions:

  1. Download this application skeleton.
  2. Convert the app to use AJAX.
  3. Add any files you changed to your gist and submit your code.
https://github.com/generalzhou/ar-student-schema.git
Successfully creates a student table that includes the correct column headers
Created Student model and includes validation for age, email format and uniqueness, and phone number.
puts "Type a word:"
list = []
while true
input = gets.chomp
break if input == ""
list << input
puts "Type another word (or press enter to finish):"