Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hoverlover/1389452 to your computer and use it in GitHub Desktop.
Save hoverlover/1389452 to your computer and use it in GitHub Desktop.
ruby-debug in ruby-1.9.3 and rbenv
# These instructions are for Ruby 1.9.3 under rbenv.
# To install ruby-debug19 for ruby-1.9.3 you need to download the following gems from http://rubyforge.org/frs/?group_id=8883
linecache19-0.5.13.gem
ruby_core_source-0.1.5.gem
ruby-debug19-0.11.6.gem
ruby-debug-base19-0.11.26.gem
#Then in your console
export RBENV_INCLUDE=/your/path/to/.rbenv/versions/1.9.3-p0/include/ruby-1.9.1/ruby-1.9.3-p0
gem install archive-tar-minitar
gem install ruby_core_source-0.1.5.gem -- --with-ruby-include=/$RBENV_INCLUDE
gem install linecache19-0.5.13.gem -- --with-ruby-include=/$RBENV_INCLUDE
gem install ruby-debug-base19-0.11.26.gem -- --with-ruby-include=/$RBENV_INCLUDE
gem install ruby-debug19-0.11.6.gem -- --with-ruby-include=/$RBENV_INCLUDE
@aka47
Copy link

aka47 commented Jan 31, 2012

great, this worked at the end after many many other things i tried ..

@hoverlover
Copy link
Author

Great! Glad it helped.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment