Note
This plugin is part of the community.general collection.
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.bundler
.
Parameter | Choices/Defaults | Comments |
---|---|---|
binstub_directory string | Only applies if state is present . Specifies the directory to install any gem bins files to. When executed the bin files will run within the context of the Gemfile and fail if any required gem dependencies are not installed. If chdir is set then this path is relative to chdir
| |
chdir string | Default: "temporary working directory" | The directory to execute the bundler commands from. This directory needs to contain a valid Gemfile or .bundle/ directory |
clean boolean |
| Only applies if state is present . If set removes any gems on the target host that are not in the gemfile |
deployment_mode boolean |
| Only applies if state is 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 |
exclude_groups string | A list of Gemfile groups to exclude during operations. This only applies when state is present . Bundler considers this a 'remembered' property for the Gemfile and will automatically exclude groups in future operations even if exclude_groups is not set | |
executable string | The path to the bundler executable | |
extra_args string | A space separated string of additional commands that can be applied to the Bundler command. Refer to the Bundler documentation for more information | |
gem_path string | Default: "RubyGems gem paths" | Only applies if state is present . Specifies the directory to install the gems into. If chdir is set then this path is relative to chdir
|
gemfile string | Default: "Gemfile in current directory" | Only applies if state is present . The path to the gemfile to use to install gems. |
local boolean |
| If set only installs gems from the cache on the target host |
state string |
| The desired state of the Gem bundle. latest updates gems to the most recent, acceptable version |
user_install boolean |
| Only applies if state is present . Installs gems in the local user's cache or for all users |
- name: Install gems from a Gemfile in the current directory community.general.bundler: state: present executable: ~/.rvm/gems/2.1.5/bin/bundle - name: Exclude the production group from installing community.general.bundler: state: present exclude_groups: production - name: Install gems into ./vendor/bundle community.general.bundler: state: present deployment_mode: yes - name: Install gems using a Gemfile in another directory community.general.bundler: state: present gemfile: ../rails_project/Gemfile - name: Update Gemfile in another directory community.general.bundler: state: latest chdir: ~/rails_project
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/general/bundler_module.html