Sha256: 397d9d6a28e5477a794617d60489fb17787c547129a2c5871c209d206ad2cbf0

Contents?: true

Size: 596 Bytes

Versions: 24

Compression:

Stored size: 596 Bytes

Contents

---
- hosts: localhost

  vars:

    ref_repos:
      github:
      - owner:    rails
        name:     rails
        version:  master
        dir_name: rails

      - owner:    ruby
        name:     ruby
        version:  v2_2_2
        dir_name: ruby-v2_2_2

  tasks:

  - name: install gems
    command: bundle install --path=.bundle
    args:
      chdir: ..

  - name: clone reference repos
    git: repo=git@github.com:{{ item.owner }}/{{ item.name }}
         dest="../ref/repos/{{ item.dir_name }}"
         update=no
         version={{ item.version }}
    with_items: ref_repos.github

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
cmds-0.2.11 ansible/dev.yml
cmds-0.2.10 ansible/dev.yml
cmds-0.2.9 ansible/dev.yml
cmds-0.2.8 ansible/dev.yml
cmds-0.2.7 ansible/dev.yml
cmds-0.2.6 ansible/dev.yml
cmds-0.2.5 ansible/dev.yml
cmds-0.2.4 ansible/dev.yml
cmds-0.2.3 ansible/dev.yml
cmds-0.2.2 ansible/dev.yml
cmds-0.2.1 ansible/dev.yml
cmds-0.2.0 ansible/dev.yml
cmds-0.1.5 ansible/dev.yml
cmds-0.1.4 ansible/dev.yml
cmds-0.1.3 ansible/dev.yml
cmds-0.1.2 ansible/dev.yml
cmds-0.1.1 ansible/dev.yml
cmds-0.1.0 ansible/dev.yml
cmds-0.0.9 ansible/dev.yml
cmds-0.0.8 ansible/dev.yml