From 5172bb068efb4fa7c8c66ce2848195612f81bb56 Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Mon, 27 Aug 2018 20:05:31 -0400 Subject: [PATCH] Correct documentation for deployment_mode flag (#25978) --- lib/ansible/modules/packaging/language/bundler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/packaging/language/bundler.py b/lib/ansible/modules/packaging/language/bundler.py index 1d3bef1e0c5..47b292fe944 100644 --- a/lib/ansible/modules/packaging/language/bundler.py +++ b/lib/ansible/modules/packaging/language/bundler.py @@ -57,8 +57,8 @@ options: default: 'no' deployment_mode: description: - - Only applies if state is C(present). If set it will only install gems - that are in the default or production groups. Requires a Gemfile.lock + - Only applies if state is C(present). If set it will install gems in + ./vendor/bundle instead of the default location. Requires a Gemfile.lock file to have been created prior type: bool default: 'no' @@ -99,7 +99,7 @@ EXAMPLES = ''' state: present exclude_groups: production -# Only install gems from the default and production groups +# Install gems into ./vendor/bundle - bundler: state: present deployment_mode: yes