From 8b7ea79329404a5cc9233ab9a6fec5d97ea57a5d Mon Sep 17 00:00:00 2001 From: Martin Jansen Date: Sat, 16 Feb 2013 21:52:13 +0100 Subject: [PATCH] In order to load gems not installed in the system-wide repository but in a local repository, it is necessary to load bundler/setup. --- kibana.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/kibana.rb b/kibana.rb index de9def682..889530acb 100644 --- a/kibana.rb +++ b/kibana.rb @@ -1,6 +1,7 @@ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "lib"))) require 'rubygems' +require 'bundler/setup' require 'kibana' KibanaApp.run!