Sha256: 88422043fd08069ac4fb06d6dc3a2c8be8a848c4812c24536cd4b1f850ddbff3
Contents?: true
Size: 760 Bytes
Versions: 2
Compression:
Stored size: 760 Bytes
Contents
--- # tasks file for qb.project # bin # === - name: create /bin directory git_mkdir: path: "{{ qb_dir }}/bin" when: project_bin # dev # === - include: dev.yml when: project_dev # tmp # === - name: create tmp directory git_mkdir: path: "{{ qb_dir }}/tmp" - name: ignore tmp dir in git lineinfile: line: /tmp dest: "{{ qb_dir }}/.gitignore" register: ignore_tmp # readme # ====== - name: create readme template: src: README.md.j2 dest: "{{ qb_dir }}/README.md" force: "{{ project_force }}" when: project_readme # hub # === - name: run `hub create` command: "hub create{% if project_private %} -p{% endif %} {{ project_owner }}/{{ project_name }}" args: chdir: "{{ qb_dir }}" when: project_hub
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
qb-0.1.12 | roles/qb.project/tasks/main.yml |
qb-0.1.11 | roles/qb.project/tasks/main.yml |