Sha256: f0206acfe73dfed2b3182bca02b3ba4b1d29bb2da88ea8eca69175435bba0c05
Contents?: true
Size: 743 Bytes
Versions: 7
Compression:
Stored size: 743 Bytes
Contents
--- # tasks file for qb.gitignore - set_fact: gitignore_repo: ./tmp/gitignore-{{ gitignore_version }} - name: check out nrser/gitignore git: repo: git@github.com:nrser/gitignore.git dest: "{{ gitignore_repo}}" version: v{{ gitignore_version }} depth: 1 update: false - name: create .gitignore copy: content: '' dest: "{{ dir }}/.gitignore" force: false - name: modify .gitignore blockinfile: content: "{{ lookup('file', gitignore_repo + '/' + gitignore_name + '.gitignore') }}" dest: "{{ dir }}/.gitignore" beginmarker: | {{ '#' * 78 }} # BEGIN {{ gitignore_name }}.gitignore # endmarker: | # # END {{ gitignore_name }}.gitignore {{ '#' * 78 }}
Version data entries
7 entries across 7 versions & 1 rubygems