The doenst button tag has an href attribute.
you use the tag style as a button.
I also recommend that you use "fontawesome" instead of glyphicon. integration is very simple, just add a gem and say bootstrap to use FA.
: https://fortawesome.imtqy.com/Font-Awesome/icons/
=link_to clue_path(@question), class: "btn btn-lg" do
%i.glyphicon.glyphicon-play
-awesome gem,
=link_to clue_path(@question), class: "btn btn-lg" do
=icon "glyphicon-play"
or
=link_to icon("glyphicon-play"), clue_path(@question), class: "btn btn-lg"