diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2012-04-17 07:41:16 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2012-04-17 07:41:16 -0700 |
commit | 89f99e81120e7ac608b71dad68bed2ace73b170e (patch) | |
tree | 91a332853c0fdd4817df88adf89e128acbc0a34e /railties/guides/source/debugging_rails_applications.textile | |
parent | 9a97699460e9b35a4c9e7a9694cf444fa75c7861 (diff) | |
parent | 56674dbfc1718c35c33ee35baba349fc752f6725 (diff) | |
download | rails-89f99e81120e7ac608b71dad68bed2ace73b170e.tar.gz rails-89f99e81120e7ac608b71dad68bed2ace73b170e.tar.bz2 rails-89f99e81120e7ac608b71dad68bed2ace73b170e.zip |
Merge pull request #5874 from asanghi/3-2-stable
replace ruby-debug19 with debugger on Rails 3-2 stable
Diffstat (limited to 'railties/guides/source/debugging_rails_applications.textile')
-rw-r--r-- | railties/guides/source/debugging_rails_applications.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/debugging_rails_applications.textile b/railties/guides/source/debugging_rails_applications.textile index 57c7786636..ef0f496870 100644 --- a/railties/guides/source/debugging_rails_applications.textile +++ b/railties/guides/source/debugging_rails_applications.textile @@ -205,7 +205,7 @@ The debugger used by Rails, +ruby-debug+, comes as a gem. To install it, just ru $ sudo gem install ruby-debug </shell> -TIP: If you are using Ruby 1.9, you can install a compatible version of +ruby-debug+ by running +sudo gem install ruby-debug19+ +TIP: If you are using Ruby 1.9, you can install a compatible version of +debugger+ by running +sudo gem install debugger+ In case you want to download a particular version or get the source code, refer to the "project's page on rubyforge":http://rubyforge.org/projects/ruby-debug/. |