cccs-website/lib/qrpatch.rb
2013-09-06 09:38:52 +02:00

11 lines
168 B
Ruby

require 'rqrcode_png'
# Monkey-patch qr generator
module RQRCodePNG
class Sequence
def border_width()
# No boundary around image
0
end
end
end