Strings in Ruby can be set with single or double quotes, but the behavior is slightly different. Double quotes allow for the ability to insert variables into a string. Check out the following example:
name = "Steve"
puts "My name is #{name}"
#=> My name is Steve
puts 'My name is #{name}'
#=> My name is #{name}