As seen here: http://railstutorial.org/chapters/rails-flavored-ruby#top for the file:
app/helpers/application_helper.rb:
module ApplicationHelper
It's string interpolation. Eg:
name = "nobosh" puts "Hello, #{name}."
Prints
Hello, nobosh.