diff options
author | soartec-lab <info@soartec-lab.work> | 2019-04-12 00:23:42 +0900 |
---|---|---|
committer | soartec-lab <info@soartec-lab.work> | 2019-04-12 00:23:42 +0900 |
commit | 5671663067a80c080dd2a5ea3a60fa887fc10b93 (patch) | |
tree | 530e9d211bfb49fe87a2c8cc2124596c34008aef /guides/source | |
parent | 45511fa8b20c621e2cf193ddaeb7d6fbe8432fea (diff) | |
download | rails-5671663067a80c080dd2a5ea3a60fa887fc10b93.tar.gz rails-5671663067a80c080dd2a5ea3a60fa887fc10b93.tar.bz2 rails-5671663067a80c080dd2a5ea3a60fa887fc10b93.zip |
Updated the description of `add_development_dependency` [skip ci]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/engines.md | 2 |
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 |