ruby_threadptr_data_type error

后端 未结 5 2307
不思量自难忘°
不思量自难忘° 2020-12-06 10:50

I\'m starting up a new rails app with the latest version of rails (3.1.3). Rails crashes when I try to start up the server. First I fixed this bug, and now I\'m getting thi

5条回答
  •  情深已故
    2020-12-06 11:20

    At last I found the problem. The debugger in RubyMine starts without bundle exec, so it doesn't use linecache19 from git. You need to install it manually.

    Resolution of the problem found here: http://youtrack.jetbrains.com/issue/RUBY-9418?projectKey=RUBY

    gem uninstall linecache19
    gem uninstall ruby-debug-base19x
    curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem
    gem install linecache19-0.5.13.gem
    gem install ruby-debug-base19x –-pre
    

    Make sure to uninstall all linecache19 and ruby-debug-base19x!

提交回复
热议问题