I have an application based on 1.8.7 and I am trying to run it on a system with 1.9.3
When I run script / server, I get:
/usr/local/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- test/unit/error (LoadError) from /usr/local/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
My server script looks like this:
#!/usr/bin/env ruby require File.expand_path('../../config/boot', __FILE__) require 'commands/server
What am I missing?
Thank you Thomas
source share