I am looking to rake my database and boot my server, but get the following issues when i look to rake the database:
/.rvm/gems/ruby-1.9.3-p194/gems/ruby-debug-base19-0.11.25/lib/ruby_debug.bundle, 9): Symbol not found: _ruby_current_thread
and two lines specifying the same issue of Symbol not found: _ruby_current_thread:
Referenced from: /.rvm/gems/ruby-1.9.3-p194/gems/ruby-debug-base19-0.11.25/lib/ruby_debug.bundle
/.rvm/gems/ruby-1.9.3-p194/gems/ruby-debug-base19-0.11.25/lib/ruby_debug.bundle
Expected in: flat namespace
Can’t seem to find the issue with this, thanks guys for your help in advance.
There are some known problems with ruby 1.9.3 and ruby debug. You have two options. Instead of using ruby-debug you can use the debugger gem which is a fork of ruby debug and works on ruby 1.9.3. It’s github page is here.
If you want to stay with ruby debug you are going to need to get the pre-release versions(after removing the version you are currently using.):
Gemfile:
Cheers,
Sean