Can anyone help with setting up my environment? This all started when
I tried to install Aptana Studio 3, and want to use the debugger. I
have installed ruby 1.9.2, and rails 3.1.0. When I try to install the
ruby-debug-base gem, I get an error that does not make sense to me -
it tells me it needs ruby version > 1.8.7. Here is the error message,
along with other details. I am running this on a Windows XP machine:
C:>gem install ruby-debug-base --include-dependencies
INFO: gem install -y is now default and will be removed
INFO: use --ignore-dependencies to install only the gems you list
ERROR: Error installing ruby-debug-base:
rbx-require-relative requires Ruby version ~> 1.8.7.
C:>gem install ruby-debug-base --include-dependencies
INFO: gem install -y is now default and will be removed
INFO: use --ignore-dependencies to install only the gems you list
ERROR: Error installing ruby-debug-base:
rbx-require-relative requires Ruby version ~> 1.8.7.
Having had my feeble knowledge on this matter enhanced by Rob
Bledenharn (thanks Rob) in a thread yesterday I can now confidently
say that Ruby version ~> 1.8.7 means that it needs a version >= 1.8.7
but less than 1.9, so 1.9.2 will not do.
If I remember correctly there is a different version of ruby-debug for
1.9, ruby-debug19 I think. You might want to google that to check.
Hello,
ruby-debug19 is compatible with rails 3.x and ruby 1.9.2.
I have uninstall the ruby-debug and related dependency and than install
ruby-debug19 gem by following below command: