Skip to content

Commit

Permalink
[#17] Added a Berksfile
Browse files Browse the repository at this point in the history
[Berkshelf](http://berkshelf.com) is "Bundler for Chef cookbooks",
making it easy to declare and install cookbook dependencies.
  • Loading branch information
bryanwb authored and karmi committed Jul 6, 2012
1 parent 8e8fc5f commit 9c8e568
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,5 +1,6 @@
.DS_Store
.vagrant
Berksfile.lock
tmp/
!tmp/.gitignore
!tmp/cookbooks/.gitignore
13 changes: 13 additions & 0 deletions Berksfile
@@ -0,0 +1,13 @@
metadata

cookbook 'apt'
cookbook 'yum'

cookbook 'vim'
cookbook 'monit'
cookbook 'nginx'

cookbook 'ark', git: 'git://github.com/bryanwb/chef-ark.git'
cookbook 'java', git: 'git://github.com/bryanwb/java'

cookbook 'minitest-handler', git: 'git://github.com/btm/minitest-handler-cookbook.git'
48 changes: 48 additions & 0 deletions chefignore
@@ -0,0 +1,48 @@
# Put files/directories that should be ignored in this file.
# Lines that start with '# ' are comments.

## OS
.DS_Store
Icon?
nohup.out

## EDITORS
\#*
.#*
*~
*.sw[a-z]
*.bak
REVISION
TAGS*
tmtags
*_flymake.*
*_flymake
*.tmproj
.project
.settings
mkmf.log

## COMPILED
a.out
*.o
*.pyc
*.so

## OTHER SCM
*/.bzr/*
*/.hg/*
*/.svn/*

## Don't send rspecs up in cookbook
.watchr
.rspec
spec/*
spec/fixtures/*
features/*

## SCM
.gitignore

# Berkshelf
Berksfile
Berksfile.lock

0 comments on commit 9c8e568

Please sign in to comment.