Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests: update of gems #213

Merged
merged 3 commits into from
Mar 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 7 additions & 15 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,23 @@

source 'https://rubygems.org'

gem 'berkshelf', '~> 6.1'
gem 'chef', '~> 12.5' # chefspec builds get stucked with 13.1
gem 'berkshelf', '~> 7.0'
gem 'chef', '~> 14.11'

group :test do
gem 'chefspec', '~> 7.1.0'
gem 'chefspec', '~> 7.3.4'
gem 'coveralls', require: false
gem 'cucumber-core', '~> 3.2.1' # it fails with cucumber 4
gem 'foodcritic', '~> 13.0'
gem 'foodcritic', '~> 15.1'
gem 'rake'
gem 'rubocop', '~> 0.49.0'
gem 'simplecov', '~> 0.10'
end

group :development do
gem 'guard'
gem 'guard-foodcritic', '~> 3.0'
gem 'guard-rspec'
gem 'guard-rubocop'
gem 'simplecov', '~> 0.16'
end

group :integration do
gem 'kitchen-dokken'
gem 'kitchen-inspec', '>= 0.23.1'
gem 'kitchen-inspec', '~> 1.0.1'
gem 'kitchen-vagrant'
gem 'test-kitchen', '~> 1.20'
gem 'test-kitchen', '~> 1.24'
end

group :tools do
Expand Down
22 changes: 0 additions & 22 deletions Guardfile

This file was deleted.

117 changes: 105 additions & 12 deletions chefignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,112 @@
# os generated
# Put files/directories that should be ignored in this file when uploading
# to a chef-server or supermarket.
# Lines that start with '# ' are comments.

# OS generated files #
######################
.DS_Store
Icon?
nohup.out
ehthumbs.db
Thumbs.db

# artefacts
*/coverage
# SASS #
########
.sass-cache

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

## COMPILED ##
##############
a.out
*.o
*.pyc
*.so
*.com
*.class
*.dll
*.exe
*/rdoc/

# Testing #
###########
.watchr
.rspec
spec/*
spec/fixtures/*
test/*
features/*
examples/*
Guardfile
Procfile
.kitchen*
kitchen.yml*
.rubocop.yml
spec/*
Rakefile
.travis.yml
.foodcritic
.codeclimate.yml

# SCM #
#######
.git
*/.git
.gitignore
.gitmodules
.gitconfig
.gitattributes
.svn
*/.bzr/*
*/.hg/*
*/.svn/*

# Berkshelf #
#############
Berksfile
Berksfile.lock
cookbooks/*
tmp

# Bundler #
###########
vendor/*

# Policyfile #
##############
Policyfile.rb
Policyfile.lock.json

# Cookbooks #
#############
CONTRIBUTING*
CHANGELOG*
TESTING*

# tests
*/*file
*/*file.lock
*/spec
*/test
*/bundle
*/vendor
# Vagrant #
###########
.vagrant
Vagrantfile

# self
*/chefignore
# Others #
##########
.github/*
coverage/*
Gemfile
Gemfile.lock
chefignore