我寫我的應用程序的一些輔助方法,這樣Rails:在哪裏放置自定義類注入?
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
...............
放在什麼地方這樣的代碼在軌?
我把它們放在'lib/monkeypatching'中,並用一個初始化程序加載它們 – apneadiving
猴子修補..我只是不知道如何調用它。 – s9gf4ult