Skip to content

Commit

Permalink
blindly applied chefstyle -a
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Davis <[email protected]>
  • Loading branch information
zenspider committed Jun 12, 2019
1 parent 5a0dd5a commit a5309ea
Show file tree
Hide file tree
Showing 688 changed files with 16,787 additions and 16,818 deletions.
6 changes: 3 additions & 3 deletions Berksfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'https://supermarket.chef.io'
source "https://supermarket.chef.io"

cookbook 'audit'
cookbook 'os_prepare', path: './test/cookbooks/os_prepare'
cookbook "audit"
cookbook "os_prepare", path: "./test/cookbooks/os_prepare"
66 changes: 33 additions & 33 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
source 'https://rubygems.org'
source "https://rubygems.org"

gem 'inspec', path: '.'
gem "inspec", path: "."

# This dependency is NOT used for normal gem deployment
# - instead, inspec-bin gemspec-depends on inspec
#
# However, AppBundler requires a top-level Gemfile.lock with inspec-bin
# in it in order to package the executable. Hence the odd backwards dependency.
gem 'inspec-bin', path: './inspec-bin'
gem "inspec-bin", path: "./inspec-bin"

gem 'ffi', '>= 1.9.14'
gem "ffi", ">= 1.9.14"

group :omnibus do
gem 'rb-readline'
gem 'appbundler'
gem 'ed25519' # ed25519 ssh key support done here as its a native gem we can't put in the gemspec
gem 'bcrypt_pbkdf' # ed25519 ssh key support done here as its a native gem we can't put in the gemspec
gem "rb-readline"
gem "appbundler"
gem "ed25519" # ed25519 ssh key support done here as its a native gem we can't put in the gemspec
gem "bcrypt_pbkdf" # ed25519 ssh key support done here as its a native gem we can't put in the gemspec
end

group :test do
gem 'chefstyle', '~> 0.6'
gem 'coveralls', require: false
gem 'minitest', '~> 5.5'
gem 'rake', '>= 10'
gem 'simplecov', '~> 0.10'
gem 'concurrent-ruby', '~> 1.0'
gem 'mocha', '~> 1.1'
gem 'ruby-progressbar', '~> 1.8'
gem 'webmock', '~> 3.0'
gem 'passgen'
gem 'm'
gem 'pry', '~> 0.10'
gem 'pry-byebug'
gem "chefstyle", "~> 0.6"
gem "coveralls", require: false
gem "minitest", "~> 5.5"
gem "rake", ">= 10"
gem "simplecov", "~> 0.10"
gem "concurrent-ruby", "~> 1.0"
gem "mocha", "~> 1.1"
gem "ruby-progressbar", "~> 1.8"
gem "webmock", "~> 3.0"
gem "passgen"
gem "m"
gem "pry", "~> 0.10"
gem "pry-byebug"
end

group :integration do
gem 'berkshelf'
gem 'chef', '< 15'
gem 'test-kitchen'
gem 'kitchen-vagrant'
gem 'kitchen-inspec'
gem 'kitchen-ec2'
gem 'kitchen-dokken'
gem 'git'
gem "berkshelf"
gem "chef", "< 15"
gem "test-kitchen"
gem "kitchen-vagrant"
gem "kitchen-inspec"
gem "kitchen-ec2"
gem "kitchen-dokken"
gem "git"
end

# gems for Maintainers.md generation
group :maintenance do
gem 'tomlrb'
gem "tomlrb"

# To sync maintainers with github
gem 'octokit'
gem 'netrc'
gem "octokit"
gem "netrc"
end

group :deploy do
gem 'inquirer'
gem "inquirer"
end

# add these additional dependencies into Gemfile.local
Expand Down
Loading

0 comments on commit a5309ea

Please sign in to comment.