Sha256: b3097448d8929979e24629afbe1745d0189d2f1c1e1603836a6442a0411d5417

Contents?: true

Size: 393 Bytes

Versions: 1

Compression:

Stored size: 393 Bytes

Contents

module Bently

  class GitignoreWindows < Recipe

    homepage 'https://github.com/github/gitignore/blob/master/Global/Windows.gitignore'

    def initialize
      append '.gitignore', gitignore
    end

    protected

    def gitignore
%{# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/}
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bently-1.0.0 lib/bently/recipe/gitignore-windows.rb