Anyone use rubyripper? It won't start...

I installed rubyripper from ports, but when I try to run the program I get the message

Code:
% rrip_gtk2 
The main program logic file 'rr_lib.rb' can't be found!

Has anyone encountered this before?
 
This is because the shell scripts called rrip_gtk2 (and rrip_cli) both look for Ruby 1.8:

Code:
RUBYDIR=[ENV['PWD'], File.dirname(__FILE__), "/usr/local/lib/ruby/site_ruby/1.8"]
I'm running Ruby 1.9, so I edited the path to that and it works:

Code:
RUBYDIR=[ENV['PWD'], File.dirname(__FILE__), "/usr/local/lib/ruby/site_ruby/1.9"]
 
Back
Top