https://github.com/sansible/ruby
Please see https://github.com/sansible/sansible for more information
https://github.com/sansible/ruby
ansible ansible-role ansible-roles ruby
Last synced: 9 months ago
JSON representation
Please see https://github.com/sansible/sansible for more information
- Host: GitHub
- URL: https://github.com/sansible/ruby
- Owner: sansible
- License: mit
- Created: 2016-05-25T14:24:08.000Z (about 10 years ago)
- Default Branch: develop
- Last Pushed: 2018-02-21T13:31:32.000Z (over 8 years ago)
- Last Synced: 2025-07-04T19:08:29.305Z (12 months ago)
- Topics: ansible, ansible-role, ansible-roles, ruby
- Language: Makefile
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 9
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ruby
Master: [](https://travis-ci.org/sansible/ruby)
Develop: [](https://travis-ci.org/sansible/ruby)
* [Installation and Dependencies](#installation-and-dependencies)
* [Tags](#tags)
* [Examples](#examples)
This roles installs ruby and bundler globally.
## Installation and Dependencies
To install run `ansible-galaxy install sansible.ruby` or add this to your
`roles.yml`
```YAML
- name: sansible.ruby
version: v2.0
```
and run `ansible-galaxy install -p ./roles -r roles.yml`
## Tags
This role uses one tag: **build**
* `build` - Installs Ruby all it's dependencies.
## Examples
To install:
```YAML
- name: Some app
hosts: "{{ hosts }}"
roles:
- role: sansible.ruby
```
To install without default config:
```YAML
- name: Some app
hosts: "{{ hosts }}"
roles:
- role: sansible.ruby
ruby_version: "2.3"
ruby_gems:
- bundler
- sass
```