mirror of
https://github.com/System-End/theseus.git
synced 2026-04-20 00:35:18 +00:00
zeit does not werk
This commit is contained in:
parent
a93149380e
commit
7043bb55fe
3 changed files with 4 additions and 4 deletions
|
|
@ -57,11 +57,11 @@ module SnailMail
|
|||
end
|
||||
|
||||
def render_imb(x, y, width, **options)
|
||||
render ImbComponent.new(letter: letter, x: x, y: y, width: width, **options)
|
||||
render IMbComponent.new(letter: letter, x: x, y: y, width: width, **options)
|
||||
end
|
||||
|
||||
def render_qr_code(x, y, size = 70)
|
||||
render QrCodeComponent.new(letter: letter, x: x, y: y, size: size, **options)
|
||||
render QRCodeComponent.new(letter: letter, x: x, y: y, size: size, **options)
|
||||
end
|
||||
|
||||
def render_letter_id(x, y, size, **opts)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module SnailMail
|
||||
module Components
|
||||
class ImbComponent < BaseComponent
|
||||
class IMbComponent < BaseComponent
|
||||
def initialize(letter:, x:, y:, width:, **options)
|
||||
@x = x
|
||||
@y = y
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module SnailMail
|
||||
module Components
|
||||
class QrCodeComponent < BaseComponent
|
||||
class QRCodeComponent < BaseComponent
|
||||
def initialize(letter:, x:, y:, size: 70, **options)
|
||||
@x = x
|
||||
@y = y
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue