You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2010/05/20 20:10:57 UTC

svn commit: r946736 - /hbase/trunk/bin/hirb.rb

Author: stack
Date: Thu May 20 18:10:57 2010
New Revision: 946736

URL: http://svn.apache.org/viewvc?rev=946736&view=rev
Log:
HBASE-2577 Remove 'core' maven module; move core up a level hbase-issues

Modified:
    hbase/trunk/bin/hirb.rb

Modified: hbase/trunk/bin/hirb.rb
URL: http://svn.apache.org/viewvc/hbase/trunk/bin/hirb.rb?rev=946736&r1=946735&r2=946736&view=diff
==============================================================================
--- hbase/trunk/bin/hirb.rb (original)
+++ hbase/trunk/bin/hirb.rb Thu May 20 18:10:57 2010
@@ -37,12 +37,12 @@ include Java
 # Some goodies for hirb. Should these be left up to the user's discretion?
 require 'irb/completion'
 
-# Add the $HBASE_HOME/lib/ruby OR $HBASE_HOME/core/src/main/ruby/lib directory
+# Add the $HBASE_HOME/lib/ruby OR $HBASE_HOME/src/main/ruby/lib directory
 # to the ruby load path so I can load up my HBase ruby modules
 if File.exists?(File.join(File.dirname(__FILE__), "..", "lib", "ruby", "hbase.rb"))
   $LOAD_PATH.unshift File.join(File.dirname(__FILE__), "..", "lib", "ruby")
 else
-  $LOAD_PATH.unshift File.join(File.dirname(__FILE__), "..", "core", "src", "main", "ruby")
+  $LOAD_PATH.unshift File.join(File.dirname(__FILE__), "..", "src", "main", "ruby")
 end
 
 #