Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
- name: Install APT Ruby dependencies
apt: pkg={{ item }}
state=present
with_items: ruby_apt_dependencies
with_items: "{{ ruby_apt_dependencies }}"
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'

- name: Install yum Ruby dependencies
Expand Down Expand Up @@ -66,4 +66,4 @@
file: path=/usr/local/bin/{{ item }}
src={{ ruby_location }}/bin/{{ item }}
state=link
with_items: ruby_symlinks
with_items: "{{ ruby_symlinks }}"