ileitch / hijack

Provides an irb session to a running ruby process.
Other
750 stars 22 forks source link

Fix for 1.9.2's $LOAD_APTH #11

Closed jugyo closed 13 years ago

jugyo commented 13 years ago

Problem

1.9.2's $LOAD_APTH does not include current directory, and tasks/gem.rake made an following error:

rake aborted!
no such file to load -- lib/hijack

Solution

I solve it as follows:

require 'lib/hijack'

require './lib/hijack'
ileitch commented 13 years ago

Thanks!