What\'s the difference between a string and a symbol in Ruby and when should I use one over the other?
An additional difference between String and Symbol is that a String has a lot more methods on it for string manipulation, while a Symbol is a relatively lean object.
String
Symbol
Check out the documentation for the String class and the Symbol class.