You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the debugger gem with unsupported Ruby versions
replace the version of debugger-ruby_core_source in the path below, with the one you're using
gem install minitar
gem install debugger-ruby_core_source // or install it with bundler
cd ~/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/debugger-ruby_core_source-1.3.7 && rake add_source VERSION=2.0.0-p598 && cd -
for projects using Bundler, just change the path to the gem to ./vendor/bundle/ruby/2.0.0/gems/debugger-ruby_core_source-1.3.7 and use bundle to install the debugger-ruby_core_source gem
Using the debugger gem on Semaphore with Ruby 2.0
replace bundle install with the following four lines in your build commands
adjust the path to the debugger-ruby_core_source version your project is using; in this case it's 1.3.7
gem install minitar
bundle install --path=vendor/bundle || true
cd ./vendor/bundle/ruby/2.0.0/gems/debugger-ruby_core_source-1.3.7 && rake add_source VERSION=2.0.0-p598 && cd -
bundle install --path=vendor/bundle