Skip to content

Commit 3d44dfd

Browse files
committed
[UPDATE] Rake Tasks and pass tests
1 parent b46faf8 commit 3d44dfd

File tree

12 files changed

+262
-307
lines changed

12 files changed

+262
-307
lines changed

.rubocop.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
AllCops:
2+
Exclude:
3+
- bin/**
4+
- vendor/**
5+
- attributes/**
6+
- Cheffile
7+
- Berksfile
8+
- metadata.rb
9+
- cookbooks/**/*
10+
- knife.rb
11+
12+
LineLength:
13+
Max: 100
14+
MethodLength:
15+
Max: 30

Gemfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
source 'https://rubygems.org'
22

3-
gem 'rake'
4-
gem 'berkshelf'
3+
gem 'berkshelf', '~> 3.1.0'
54
gem 'chefspec'
65
gem 'foodcritic'
76
gem 'rubocop'
8-
gem 'ci_reporter'
97

108
group :integration do
11-
gem 'test-kitchen'
9+
gem 'test-kitchen', '~> 1.2.0'
1210
gem 'kitchen-vagrant'
1311
end

0 commit comments

Comments
 (0)