Added gitignore and Gemfile
This commit is contained in:
parent
dd7d1ca0cb
commit
b8b96ad0b8
2 changed files with 40 additions and 0 deletions
20
.gitignore
vendored
Normal file
20
.gitignore
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
*~
|
||||||
|
*#
|
||||||
|
.#*
|
||||||
|
\#*#
|
||||||
|
.*.sw[a-z]
|
||||||
|
*.un~
|
||||||
|
pkg/
|
||||||
|
|
||||||
|
# Berkshelf
|
||||||
|
.vagrant
|
||||||
|
/cookbooks
|
||||||
|
Berksfile.lock
|
||||||
|
|
||||||
|
# Bundler
|
||||||
|
Gemfile.lock
|
||||||
|
bin/*
|
||||||
|
.bundle/*
|
||||||
|
|
||||||
|
.kitchen/
|
||||||
|
.kitchen.local.yml
|
20
Gemfile
Normal file
20
Gemfile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
gem 'berkshelf'
|
||||||
|
|
||||||
|
# Uncomment these lines if you want to live on the Edge:
|
||||||
|
#
|
||||||
|
# group :development do
|
||||||
|
# gem "berkshelf", github: "berkshelf/berkshelf"
|
||||||
|
# gem "vagrant", github: "mitchellh/vagrant", tag: "v1.6.3"
|
||||||
|
# end
|
||||||
|
#
|
||||||
|
# group :plugins do
|
||||||
|
# gem "vagrant-berkshelf", github: "berkshelf/vagrant-berkshelf"
|
||||||
|
# gem "vagrant-omnibus", github: "schisamo/vagrant-omnibus"
|
||||||
|
# end
|
||||||
|
|
||||||
|
gem "test-kitchen"
|
||||||
|
gem "kitchen-docker"
|
||||||
|
gem "stove"
|
||||||
|
|
Loading…
Reference in a new issue