Skip to content

Instantly share code, notes, and snippets.

@dheaney
Created May 9, 2013 01:25
Show Gist options
  • Select an option

  • Save dheaney/5544913 to your computer and use it in GitHub Desktop.

Select an option

Save dheaney/5544913 to your computer and use it in GitHub Desktop.
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