https://github.com/buluma/ansible-role-ruby_gems
Ansible Role - Ruby Gems
https://github.com/buluma/ansible-role-ruby_gems
ansible ansible-role molecule ruby ruby-gem rubygems tox
Last synced: 3 months ago
JSON representation
Ansible Role - Ruby Gems
- Host: GitHub
- URL: https://github.com/buluma/ansible-role-ruby_gems
- Owner: buluma
- License: apache-2.0
- Created: 2022-03-07T03:56:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T16:27:53.000Z (over 2 years ago)
- Last Synced: 2025-02-26T10:28:52.577Z (over 1 year ago)
- Topics: ansible, ansible-role, molecule, ruby, ruby-gem, rubygems, tox
- Language: Shell
- Homepage: https://galaxy.ansible.com/buluma/ruby_gems
- Size: 132 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# [Ansible role ruby_gems](#ansible-role-ruby_gems)
Ruby Gems installation for Linux.
|GitHub|Issues|Pull Requests|Version|Downloads|
|------|------|-------------|-------|---------|
|[](https://github.com/buluma/ansible-role-ruby_gems/actions/workflows/molecule.yml)|[](https://github.com/buluma/ansible-role-ruby_gems/issues/)|[](https://github.com/buluma/ansible-role-ruby_gems/pulls/)|[](https://github.com/buluma/ansible-role-ruby_gems/releases/)|[](https://galaxy.ansible.com/ui/standalone/roles/buluma/ruby_gems/documentation)|
## [Example Playbook](#example-playbook)
This example is taken from [`molecule/default/converge.yml`](https://github.com/buluma/ansible-role-ruby_gems/blob/master/molecule/default/converge.yml) and is tested on each push, pull request and release.
```yaml
---
- name: Converge
become: true
hosts: all
post_tasks:
- name: Verify Ruby is installed.
changed_when: false
ansible.builtin.command: ruby --version
pre_tasks:
- name: Update apt cache.
ansible.builtin.apt:
update_cache: "true"
cache_valid_time: "600"
when: ansible_os_family == 'Debian'
- name: Add rubygems bin dir to system-wide $PATH.
ansible.builtin.copy:
content: PATH=$PATH:{{ ruby_gems_bin_path }}
dest: /etc/profile.d/ruby.sh
mode: "0644"
- name: Don't install Bundler on CentOS 7 because of old Ruby version.
ansible.builtin.set_fact:
ruby_install_bundler: false
when:
- ansible_os_family == 'RedHat'
- ansible_distribution_major_version == '7'
roles:
- role: buluma.bootstrap
- role: buluma.ruby_gems
vars:
ruby_gems_bin_path: /root/.gem/ruby/bin
ruby_install_gems:
- json
ruby_install_gems_user: root
```
Also see a [full explanation and example](https://buluma.github.io/how-to-use-these-roles.html) on how to use these roles.
## [Role Variables](#role-variables)
The default values for the variables are set in [`defaults/main.yml`](https://github.com/buluma/ansible-role-ruby_gems/blob/master/defaults/main.yml):
```yaml
---
ruby_download_url: "http://cache.ruby-lang.org/pub/ruby/3.0/ruby-3.0.0.tar.gz"
ruby_install_bundler: true
ruby_install_from_source: true
ruby_install_gems: []
ruby_install_gems_user: "{{ ansible_user }}"
ruby_rubygems_package_name: rubygems
ruby_source_configure_command: ./configure --enable-shared
ruby_version: "3.0.0"
workspace: /root
```
## [Requirements](#requirements)
- pip packages listed in [requirements.txt](https://github.com/buluma/ansible-role-ruby_gems/blob/master/requirements.txt).
## [State of used roles](#state-of-used-roles)
The following roles are used to prepare a system. You can prepare your system in another way.
| Requirement | GitHub |
|-------------|--------|
|[buluma.bootstrap](https://galaxy.ansible.com/buluma/bootstrap)|[](https://github.com/buluma/ansible-role-bootstrap/actions)|
## [Context](#context)
This role is part of many compatible roles. Have a look at [the documentation of these roles](https://buluma.github.io/) for further information.
Here is an overview of related roles:

## [Compatibility](#compatibility)
This role has been tested on these [container images](https://hub.docker.com/u/robertdebock):
|container|tags|
|---------|----|
|[EL](https://hub.docker.com/r/robertdebock/enterpriselinux)|all|
|[Ubuntu](https://hub.docker.com/r/robertdebock/ubuntu)|all|
|[Debian](https://hub.docker.com/r/robertdebock/debian)|all|
The minimum version of Ansible required is 2.4, tests have been done on:
- The previous version.
- The current version.
- The development version.
If you find issues, please register them on [GitHub](https://github.com/buluma/ansible-role-ruby_gems/issues).
## [License](#license)
[Apache-2.0](https://github.com/buluma/ansible-role-ruby_gems/blob/master/LICENSE).
## [Author Information](#author-information)
[buluma](https://buluma.github.io/)