Sha256: 4e3abaef33b68ccc5aa61683680e0356e97c928502c1d6fc9a90cf81f21d7327

Contents?: true

Size: 412 Bytes

Versions: 1

Compression:

Stored size: 412 Bytes

Contents

module Bently

  class GitignoreRuby < Recipe

    homepage 'https://github.com/github/gitignore/blob/master/Ruby.gitignore'

    def initialize
      append '.gitignore', gitignore
    end

    protected

    def gitignore
%{*.gem
*.rbc
.bundle
.config
coverage
InstalledFiles
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp

# YARD artifacts
# .yardoc
# _yardoc
# doc/}
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

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