summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-21 17:28:31 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-12 10:15:42 +0100
commit47afeab8ab7f06e177508f04486a9c26869abe00 (patch)
tree18e3eca8414c3bafb78384be988ab695bf31d0d8
parent2cebfbb7a48aa93819959108733ca870121e11b1 (diff)
downloadbundler-47afeab8ab7f06e177508f04486a9c26869abe00.tar.gz
github.https setting is boolean
-rw-r--r--lib/bundler/settings.rb1
-rw-r--r--spec/bundler/dsl_spec.rb2
-rw-r--r--spec/quality_spec.rb1
3 files changed, 3 insertions, 1 deletions
diff --git a/lib/bundler/settings.rb b/lib/bundler/settings.rb
index c9294ca801..bed5c5604e 100644
--- a/lib/bundler/settings.rb
+++ b/lib/bundler/settings.rb
@@ -35,6 +35,7 @@ module Bundler
frozen
gem.coc
gem.mit
+ github.https
global_path_appends_ruby_scope
global_gem_cache
ignore_messages
diff --git a/spec/bundler/dsl_spec.rb b/spec/bundler/dsl_spec.rb
index ce0544a573..19a5d6bcd1 100644
--- a/spec/bundler/dsl_spec.rb
+++ b/spec/bundler/dsl_spec.rb
@@ -28,7 +28,7 @@ RSpec.describe Bundler::Dsl do
context "github_https feature flag" do
it "is true when github.https is true" do
bundle "config set github.https true"
- expect(Bundler.feature_flag.github_https?).to eq "true"
+ expect(Bundler.feature_flag.github_https?).to eq true
end
end
diff --git a/spec/quality_spec.rb b/spec/quality_spec.rb
index 6477a03fe4..3ddc775fae 100644
--- a/spec/quality_spec.rb
+++ b/spec/quality_spec.rb
@@ -172,6 +172,7 @@ RSpec.describe "The library itself" do
forget_cli_options
gem.coc
gem.mit
+ github.https
inline
lockfile_uses_separate_rubygems_sources
use_gem_version_promoter_for_major_updates