Path: | development.ru |
Last Update: | Wed Apr 17 11:38:17 +0000 2013 |
require ‘rubygems‘
$:.unshift(File.dirname(FILE) + ’/../chef/lib’)
require ‘merb-core’ require ‘chef‘
Chef::Config.from_file(File.join("/etc", "chef", "server.rb")) Chef::Config.from_file(File.dirname(FILE) + ’/../features/data/config/server.rb’)
Chef::Config[:log_location] = ’/tmp/fuuu’ Chef::Config[:log_level] = :debug Chef::Log.level = :debug
Merb::Config.setup(:merb_root => File.expand_path(File.dirname(FILE)),
:environment => 'development', :fork_for_class_load => false, :init_file => File.dirname(__FILE__) / "config/init.rb")
Merb.environment = Merb::Config[:environment] Merb.root = Merb::Config[:merb_root]
Merb::BootLoader.run
# Uncomment if your app is mounted at a suburi if prefix = ::Merb::Config[:path_prefix] # use Merb::Rack::PathPrefix, prefix end
run Merb::Rack::Application.new