Skip to content

Instantly share code, notes, and snippets.

@lbvf50mobile
Created May 8, 2017 02:48
Show Gist options
  • Save lbvf50mobile/d3d88d5b8c7795e2900471de480e1c8d to your computer and use it in GitHub Desktop.
Save lbvf50mobile/d3d88d5b8c7795e2900471de480e1c8d to your computer and use it in GitHub Desktop.
Pseudo bsh file to configure plugin in visual studio code (debug)
# https://github.com/rubyide/vscode-ruby/wiki/1.-Debugger-Installation
# This is configuration for rubyide/vscode https://github.com/rubyide/vscode-ruby
# Debugger
# An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
# https://rubygems.org/gems/ruby-debug-ide/versions/0.6.0
gem list ruby-debug-ide --remote
gem install ruby-debug-ide -v 0.6.0
gem list ruby-debug-ide --local
# debase is a fast implementation of the standard Ruby debugger debug.rb for
# Ruby 2.0. It is implemented by utilizing a new Ruby TracePoint class.
# https://rubygems.org/gems/debase
gem list debase --remote --pre # because I need 0.2.2.beta10 versiong
gem list list debase --local
#I think I need only one of rby-debug-ide or ruby debase, so I need to remove one gem if need to.
gem unistall debase
gem uninstall ruyb-debug-ide
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment