Sha256: b21f026d91ccbcb751606904943a37c7d52e409e74d25ff3cd15878385e9b359

Contents?: true

Size: 186 Bytes

Versions: 1

Compression:

Stored size: 186 Bytes

Contents

module Bently

  class Gitignore < Recipe

    GITIGNORE = 
%{.DS_Store
.rvmrc
*.swap
*.swo
*.swp
}

    def bake
      create_file ".gitignore", GITIGNORE
      super
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bently-0.0.0 lib/bently/recipe/gitignore.rb