Ticket #475 (closed defect: fixed)

Opened 9 months ago

Last modified 9 months ago

script/merb references config/merb/boot instead of config/boot

Reported by: dermot.brenn..@gmail.com Assigned to:
Priority: medium Milestone: 0.5.2
Component: Merb Keywords:
Cc:

Description

After freezing an app with merb 0.5.2

$ script/merb
script/merb:2:in `require': no such file to load -- /path/to/merbapp/config/merb/boot (LoadError)
        from script/merb:2

Fix by changing line 2 of script/merb from

require File.expand_path(File.dirname(__FILE__)+'/../config/merb/boot')

to

require File.expand_path(File.dirname(__FILE__)+'/../config/boot')

Change History

01/28/08 14:23:18 changed by iv..@gweezlebur.com

  • status changed from new to closed.
  • resolution set to fixed.

(In [1329]) Fix stupid thinko w/ frozen script/merb (Closes #475) nice catch Steve