You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bundler/lib/bundler/cli.rb
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -550,10 +550,13 @@ def viz
550
550
method_option:rubocop,type: :boolean,desc: "Add rubocop to the generated Rakefile and gemspec. Set a default with `bundle config set --global gem.rubocop true`."
551
551
method_option:changelog,type: :boolean,desc: "Generate changelog file. Set a default with `bundle config set --global gem.changelog true`."
552
552
method_option:test,type: :string,lazy_default: Bundler.settings["gem.test"] || "",aliases: "-t",banner: "Use the specified test framework for your library",
553
+
enum: %w[rspecminitesttest-unit],
553
554
desc: "Generate a test directory for your library, either rspec, minitest or test-unit. Set a default with `bundle config set --global gem.test (rspec|minitest|test-unit)`."
desc: "Generate CI configuration, either GitHub Actions, GitLab CI or CircleCI. Set a default with `bundle config set --global gem.ci (github|gitlab|circle)`"
desc: "Add a linter and code formatter, either RuboCop or Standard. Set a default with `bundle config set --global gem.linter (rubocop|standard)`"
558
561
method_option:github_username,type: :string,default: Bundler.settings["gem.github_username"],banner: "Set your username on GitHub",desc: "Fill in GitHub username on README so that you don't have to do it manually. Set a default with `bundle config set --global gem.github_username <your_username>`."
0 commit comments