aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2014-01-19 01:36:09 -0800
committerAndrew White <andyw@pixeltrix.co.uk>2014-01-19 01:36:09 -0800
commitab91bc31922c1753009fac96b3d77e9d279d02d3 (patch)
tree8c034f0ffd468cd15c501cbefe5f0436fafd8216 /railties
parent3c354bd83b2f429e8fa20c8cf3ae1fd8b1c736f2 (diff)
parente05c7912646d375a8ceefcc2897bc8d3384dd648 (diff)
downloadrails-ab91bc31922c1753009fac96b3d77e9d279d02d3.tar.gz
rails-ab91bc31922c1753009fac96b3d77e9d279d02d3.tar.bz2
rails-ab91bc31922c1753009fac96b3d77e9d279d02d3.zip
Merge pull request #13756 from huoxito/rails-spring
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