Skip to content

Instantly share code, notes, and snippets.

@Nitrino
Last active December 20, 2015 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nitrino/6128894 to your computer and use it in GitHub Desktop.
Save Nitrino/6128894 to your computer and use it in GitHub Desktop.
qr-code helper generator
def qr_code(size, url)
"https://chart.googleapis.com/chart?cht=qr&chs=#{size}x#{size}&chl=#{CGI.escape(url)}"
end
= image_tag(qr_code 500, 'https://github.com/Nitrino')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment