aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorWashington Luiz <huoxito@gmail.com>2014-01-18 20:22:51 -0300
committerWashington Luiz <huoxito@gmail.com>2014-01-18 20:22:51 -0300
commite05c7912646d375a8ceefcc2897bc8d3384dd648 (patch)
tree8c034f0ffd468cd15c501cbefe5f0436fafd8216 /railties
parent3c354bd83b2f429e8fa20c8cf3ae1fd8b1c736f2 (diff)
downloadrails-e05c7912646d375a8ceefcc2897bc8d3384dd648.tar.gz
rails-e05c7912646d375a8ceefcc2897bc8d3384dd648.tar.bz2
rails-e05c7912646d375a8ceefcc2897bc8d3384dd648.zip
spring gem moved to rails/spring
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/generators/app_base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index 1b50569c9e..55709b80ae 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -389,7 +389,7 @@ module Rails
def spring_gemfile_entry
return [] unless spring_install?
- comment = 'Spring speeds up development by keeping your application running in the background. Read more: https://github.com/jonleighton/spring'
+ comment = 'Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring'
GemfileEntry.new('spring', nil, comment, group: :development)
end