- Download this application skeleton.
- Convert the app to use AJAX.
- Add any files you changed to your gist and submit your code.
This file contains 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
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. |
This file contains 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
puts "Type a word:" | |
list = [] | |
while true | |
input = gets.chomp | |
break if input == "" | |
list << input | |
puts "Type another word (or press enter to finish):" |
NewerOlder