Created
May 9, 2013 01:25
-
-
Save dheaney/5544913 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'sinatra' | |
| require 'rqrcode' | |
| contact = "MECARD:N:Guy Fawkes;ADR:123 Gunpowder Rd, Walworth, England 123456;EMAIL:dumby@gmail.com;URL:http://google.com;;" | |
| get '/' do | |
| @qr = RQRCode::QRCode.new(contact, :size => 10, :level => :l) | |
| erb :index | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment