zeit does not werk

This commit is contained in:
24c02 2025-06-24 15:41:50 -04:00
parent a93149380e
commit 7043bb55fe
3 changed files with 4 additions and 4 deletions

View file

@ -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)

View file

@ -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

View file

@ -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