2012-08-01 40 views
0

我無法弄清楚爲什麼在heroku服務器上我的應用程序崩潰了。在本地服務器上似乎都有效。如何在Heroku服務器上使用Barby :: Code128A?

2012-08-01T17:14:50+00:00 app[web.1]: NameError (uninitialized constant Barby::Code128A): 
2012-08-01T17:14:50+00:00 app[web.1]: app/models/order.rb:102:in `generate_shipment' 
2012-08-01T17:14:50+00:00 app[web.1]: app/models/order.rb:60:in `generate_items' 
2012-08-01T17:14:50+00:00 app[web.1]: app/controllers/orders_controller.rb:17:in `create' 

我試圖添加Procfile,但它不利於我滿意。 https://devcenter.heroku.com/articles/procfile/#deploying-to-heroku

回答

1

您可能需要在使用之前單獨要求code128a發生器。只需將以下行添加到您正在使用的文件中Barby::Code128A

require 'barby/barcode/code_128' 
相關問題