aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2019-04-11 11:50:29 -0400
committerGitHub <noreply@github.com>2019-04-11 11:50:29 -0400
commit9ba394568cb38586cae134265d2d81c809f4c8a6 (patch)
tree530e9d211bfb49fe87a2c8cc2124596c34008aef /guides/source
parent45511fa8b20c621e2cf193ddaeb7d6fbe8432fea (diff)
parent5671663067a80c080dd2a5ea3a60fa887fc10b93 (diff)
downloadrails-9ba394568cb38586cae134265d2d81c809f4c8a6.tar.gz
rails-9ba394568cb38586cae134265d2d81c809f4c8a6.tar.bz2
rails-9ba394568cb38586cae134265d2d81c809f4c8a6.zip
Merge pull request #35944 from soartec-lab/update_guide_engine_gem_development_dependency
Updated the description of `add_development_dependency` [skip ci]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index 5446c1c188..a36944d980 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -1393,7 +1393,7 @@ s.add_development_dependency "moo"
Both kinds of dependencies will be installed when `bundle install` is run inside
of the application. The development dependencies for the gem will only be used
-when the tests for the engine are running.
+when the development and tests for the engine are running.
Note that if you want to immediately require dependencies when the engine is
required, you should require them before the engine's initialization. For