aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-11-16 23:45:43 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-11-16 23:45:43 -0200
commit603f538febc4527b44e9d6cd0622653d15f5f3b3 (patch)
tree22c0d2a9ed24de052f44547a7b1e0a02067aa680 /railties/guides/source
parentff5d60636878fee6135d44f48b2e1108a99f4eb0 (diff)
downloadrails-603f538febc4527b44e9d6cd0622653d15f5f3b3.tar.gz
rails-603f538febc4527b44e9d6cd0622653d15f5f3b3.tar.bz2
rails-603f538febc4527b44e9d6cd0622653d15f5f3b3.zip
Remove the git option from ruby-prof gem pointing to wycats repo.
According to him, at one point his fork was the one that had the call stack printer, and it's in the main repo now. [ci skip]
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/performance_testing.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/performance_testing.textile b/railties/guides/source/performance_testing.textile
index 958b13cd9e..0cf7d4a4fb 100644
--- a/railties/guides/source/performance_testing.textile
+++ b/railties/guides/source/performance_testing.textile
@@ -447,7 +447,7 @@ h4. Using Ruby-Prof on MRI and REE
Add Ruby-Prof to your applications' Gemfile if you want to benchmark/profile under MRI or REE:
<ruby>
-gem 'ruby-prof', :git => 'git://github.com/wycats/ruby-prof.git'
+gem 'ruby-prof'
</ruby>
Now run +bundle install+ and you're ready to go.