私はこのような私のアプリケーションのためにいくつかのヘルパーメソッドを書きました
module Magick
class Draw
def qrcode(qrcode, left_corner, top_corner, right_corner, bottom_corner)
size = qrcode.modules.length
width = right_corner - left_corner
height = bottom_corner - top_corner
wset = width.to_f / size
hset = height.to_f / size
...............
そのようなコードをレールのどこに配置しますか?