diff options
author | TangRufus <[email protected]> | 2025-05-30 02:38:33 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-06-03 08:05:07 +0900 |
commit | 959bde86431550bcc90419070ccbe08f45c47eaf (patch) | |
tree | 84acd9b8c367bd9dc70d9ce675bb28583e7fcd06 /lib/bundler/cli/gem.rb | |
parent | 3691c5409d42281a45e26c04280d3ae503d0f053 (diff) |
[rubygems/rubygems] Suffix `.circleci` with `/` in `spec.files` in the `.gemspec` template
https://github.com/rubygems/rubygems/commit/e48c6beaf6
Diffstat (limited to 'lib/bundler/cli/gem.rb')
-rw-r--r-- | lib/bundler/cli/gem.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/gem.rb b/lib/bundler/cli/gem.rb index 32c1a4ebfd..c600655d45 100644 --- a/lib/bundler/cli/gem.rb +++ b/lib/bundler/cli/gem.rb @@ -144,7 +144,7 @@ module Bundler config[:ignore_files] << ".gitlab-ci.yml" when "circle" templates.merge!("circleci/config.yml.tt" => ".circleci/config.yml") - config[:ignore_files] << ".circleci" + config[:ignore_files] << ".circleci/" end if ask_and_set(:mit, "Do you want to license your code permissively under the MIT license?", |