I am installing debugger for Ruby version 1.9.3-p448 then followed the following steps to get debugger installed but on step five I get the error.
The steps are
1) Download Ruby development Kit from the following link and extract it in Ruby base directory: In my case it was C:Ruby193
2) Open a windows command prompt and change the directory to the DevKit folder. Type following command:
ruby dk.rb init
3) Now run the following command to enable DevKit for the Ruby installations in your machine.
ruby dk.rb install
4) Run following command
gem install ruby-debug-ide --platform=ruby --pre
5) For ruby-debug file
First download linecache19-0.5.13.gem and ruby-debug-base19-0.11.26.gem from http://rubyforge.org/frs/?group_id=8883, then execute following commands.
gem install linecache19-0.5.13.gem
gem install ruby-debug-base19-0.11.26.gem -- --with-ruby-include= C:\Ruby193\ruby-1.9.3-p448-src
6) Type following commands
irb
require 'ruby-debug'
But 2nd command in step 5 is not getting through and failed to get me proceeded.
Help me in find what i am missing.