Skip to content

Commit

Permalink
Merge pull request #82 from chef/bundler_deprecated_warning
Browse files Browse the repository at this point in the history
Replace deprecated --without flag with bundle config
  • Loading branch information
tas50 authored Aug 31, 2021
2 parents f6bdb0f + 87e9ad5 commit 4c61491
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .expeditor/verify.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ steps:

- label: "run specs :windows:"
command:
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle config set --local without docs debug
- bundle install --jobs=7 --retry=3
- bundle exec rake spec
expeditor:
executor:
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ StackOverflow discussions that are relevant]

- [ ] New functionality includes tests
- [ ] All tests pass
- [ ] All commits have been signed-off for the Developer Certificate of Origin. See <https://github.com/chef/chef/blob/master/CONTRIBUTING.md#developer-certification-of-origin-dco>
- [ ] All commits have been signed-off for the Developer Certificate of Origin. See <https://github.com/chef/chef/blob/main/CONTRIBUTING.md#developer-certification-of-origin-dco>
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ end
group(:development, :test) do
gem "rake"
# for testing new chefstyle rules
gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "main"
end

group :debug do
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# win32-certstore
[![Build status](https://badge.buildkite.com/ba68b9ac04486e2ddf6587b35c1eac00260d4216829c289ce6.svg?branch=master)](https://buildkite.com/chef-oss/chef-win32-certstore-master-verify)
[![Build status](https://badge.buildkite.com/ba68b9ac04486e2ddf6587b35c1eac00260d4216829c289ce6.svg?branch=main)](https://buildkite.com/chef-oss/chef-win32-certstore-main-verify)
[![Gem Version](https://badge.fury.io/rb/win32-certstore.svg)](https://badge.fury.io/rb/win32-certstore)

Ruby library for accessing the certificate store on Microsoft Windows:
Expand Down Expand Up @@ -205,7 +205,7 @@ Ruby 2.5+ is required.

## Contributing

For information on contributing to this project see https://github.com/chef/chef/blob/master/CONTRIBUTING.md
For information on contributing to this project see https://github.com/chef/chef/blob/main/CONTRIBUTING.md

More information on the contribution process for Chef projects can be found in the [Chef Contributions document](http://docs.chef.io/community_contributions.html).

Expand Down
2 changes: 1 addition & 1 deletion lib/win32/certstore/mixin/assertions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def lookup_error(failed_operation = nil)
# ROOT -> Root certificates.
# SPC -> Software Publisher Certificate.
def valid_store_name
%w{MY CA ROOT AUTHROOT DISALLOWED SPC TRUST TRUSTEDPEOPLE TRUSTEDPUBLISHER CLIENTAUTHISSUER TRUSTEDDEVICES SMARTCARDROOT WEBHOSTING REMOTE\ DESKTOP}
["MY", "CA", "ROOT", "AUTHROOT", "DISALLOWED", "SPC", "TRUST", "TRUSTEDPEOPLE", "TRUSTEDPUBLISHER", "CLIENTAUTHISSUER", "TRUSTEDDEVICES", "SMARTCARDROOT", "WEBHOSTING", "REMOTE DESKTOP"]
end
end
end
Expand Down

0 comments on commit 4c61491

Please sign in to comment.