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

v2.1.1 #8

Merged
merged 3 commits into from
Mar 19, 2020
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
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