Sha256: 740d043f0c8398c87796184d2663db40108662a03bc5d6414f5f870a4b8720a6

Contents?: true

Size: 380 Bytes

Versions: 1

Compression:

Stored size: 380 Bytes

Contents

module Bently

  class GitignoreOsx < Recipe

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

    def initialize
      append '.gitignore', gitignore
    end

    protected

    def gitignore
%{.DS_Store
.AppleDouble
.LSOverride
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes}
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

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