Skip to content

Commit

Permalink
v2.1.1 (#8)
Browse files Browse the repository at this point in the history
* v2.1.1 Read Changelog

* v2.1.1 Read Changelog updated changelog

* Need vendor directory exclude in rubocop because circleci bundles to vendor
  • Loading branch information
LevonBecker authored Mar 19, 2020
1 parent 461b3d3 commit bf3aa47
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 674 deletions.
36 changes: 20 additions & 16 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,38 @@
AllCops:
TargetRubyVersion: 2.6.5
Exclude:
- 'berks-cookbooks/**/*'
- '.idea/**/*'
- '.git/**/*'
- '.kitchen/**/*'
- '*.lock'
- 'vendor/**/*'

Documentation:
Layout/AlignParameters:
Enabled: false

Metrics/LineLength:
Max: 200
Layout/CaseIndentation:
IndentOneStep: false

Metrics/AbcSize:
Max: 28

Metrics/BlockLength:
Enabled: false

Metrics/CyclomaticComplexity:
Enabled: false

Metrics/LineLength:
Max: 256

Metrics/MethodLength:
Max: 60
Max: 128
CountComments: false
Enabled: true

Metrics/PerceivedComplexity:
Max: 10

Style/Documentation:
Enabled: false

Style/Encoding:
Enabled: false
Expand All @@ -30,14 +43,5 @@ Style/SignalException:
Style/EmptyLiteral:
Enabled: false

CyclomaticComplexity:
Enabled: false

AlignParameters:
Enabled: false

Encoding:
Enabled: false

Style/FrozenStringLiteralComment:
Enabled: false
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# CHANGE LOG

## x.x.x - TODO List - Levon Becker
* Get jUnit test results working for rubocop rake task
* Add logic to packages control to test that packages aren't installed if chef attribute package install is false
## 2.1.1 - 03/19/2020 - Levon Becker
* Renamed repo from inspec_bonusbits_base to bonusbits_base_inspec
* Updated min inspec version to 4.18.85
* Moved ToDo list to TODO.md
* Cleaned up Gemfile
* Updated to rubocop 0.75.1
* Removed unused gems
* Added Ruby version 2.6.5
* Cleaned up rubocop config and eliminated warnings by adding department to each rule that was missing it
* Updated Readme with renamed repo name

## 2.1.0 - 01/06/2020 - Levon Becker
* Removed string to boolean input syntax. Found it was giving odd false positive results.
Expand Down
27 changes: 5 additions & 22 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,7 @@
source 'https://rubygems.org'
ruby '~> 2.6.5'

gem 'aws-sdk-core', '3.68.1'
gem 'berkshelf', '7.0.8'
gem 'bundler', '1.17.2'
gem 'chef', '15.4.45'
gem 'chef-dk', '4.5.0'
gem 'rake'

group :style do
gem 'foodcritic', '16.1.1'
gem 'rubocop', '0.72.0'
end

group :unit do
gem 'chefspec', '7.4.0'
gem 'rspec_junit_formatter', '0.4.1'
end

group :integration do
gem 'inspec', '4.18.0'
gem 'kitchen-docker', '2.9.0'
gem 'test-kitchen', '2.3.3'
source 'https://rubygems.org/' do
gem 'bundler', '1.17.2'
gem 'rake'
gem 'rubocop', '0.75.1'
end
Loading

0 comments on commit bf3aa47

Please sign in to comment.