https://github.com/darkwizard242/ansible-role-ruby
Ansible role for Ruby. Available on Ansible Galaxy.
https://github.com/darkwizard242/ansible-role-ruby
ansible ansible-galaxy ansible-role linux os programming-language ruby system
Last synced: 11 months ago
JSON representation
Ansible role for Ruby. Available on Ansible Galaxy.
- Host: GitHub
- URL: https://github.com/darkwizard242/ansible-role-ruby
- Owner: darkwizard242
- License: mit
- Created: 2020-01-22T01:01:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T14:50:41.000Z (over 1 year ago)
- Last Synced: 2025-01-11T09:04:14.233Z (about 1 year ago)
- Topics: ansible, ansible-galaxy, ansible-role, linux, os, programming-language, ruby, system
- Language: Python
- Homepage: https://galaxy.ansible.com/darkwizard242/ruby
- Size: 32.2 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/darkwizard242/ansible-role-ruby/actions?query=workflow%3Abuild-and-test) [](https://github.com/darkwizard242/ansible-role-ruby/actions?query=workflow%3Arelease)  [](https://sonarcloud.io/dashboard?id=ansible-role-ruby) [](https://sonarcloud.io/dashboard?id=ansible-role-ruby) [](https://sonarcloud.io/dashboard?id=ansible-role-ruby)  
# Ansible Role: ruby
Role to install [ruby](https://www.ruby-lang.org/en/) package on **Debian/Ubuntu** and **EL** systems. These are the default versions available in repositories and may change based on whatever is available on the default OS repositories.
## Requirements
None.
## Role Variables
Available variables are listed below (located in `defaults/main.yml`):
### Variables list:
```yaml
ruby_app_debian_package: ruby-full
ruby_app_el_package: ruby
ruby_desired_state: present
```
### Variables table:
Variable | Description
----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------
ruby_app_debian_package | Defines the app to install on Debian based systems i.e. **ruby-full**
ruby_app_el_package | Defines the app to install on Enterprise Linux (Redhat/CentOS) systems i.e. **ruby**
ruby_desired_state | Defined to dynamically chose whether to install (i.e. either `present` or `latest`) or uninstall (i.e. `absent`) the package. Defaults to `present`.
## Dependencies
None
## Example Playbook
For default behaviour of role (i.e. installation of **ruby** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.ruby
```
For customizing behavior of role (i.e. installation of latest **ruby** package instead of ensure it is installed ) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.ruby
vars:
ruby_desired_state: latest
```
For customizing behavior of role (i.e. installation of **ruby** package in regards to EL systems) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.ruby
vars:
ruby_app_el_package: ruby
```
## License
[MIT](https://github.com/darkwizard242/ansible-role-ruby/blob/master/LICENSE)
## Author Information
This role was created by [Ali Muhammad](https://www.alimuhammad.dev/), a DevOps/CloudOps Engineer who loves to learn and contribute to Open Source community.