summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2017-02-10 16:04:21 +0000
committerThe Bundler Bot <bot@bundler.io>2017-02-10 16:04:21 +0000
commit4e8c8c3e9f817f91674472c11c1421d073330e1c (patch)
treea5a86a13539548e72a34f27726991bc42b4a3472
parentf93accce1e9d948eaef79e2f380fd7d396687808 (diff)
parent7fd9fed542c4a33572b52ff35ed9354b65d93be5 (diff)
downloadbundler-4e8c8c3e9f817f91674472c11c1421d073330e1c.tar.gz
Auto merge of #5420 - amatsuda:extention, r=segiddins
s/@disable_extentions/@disable_extensions/ Typo.
-rw-r--r--lib/bundler/source/path/installer.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/source/path/installer.rb b/lib/bundler/source/path/installer.rb
index abc46d5a04..9c2f74a31b 100644
--- a/lib/bundler/source/path/installer.rb
+++ b/lib/bundler/source/path/installer.rb
@@ -13,7 +13,7 @@ module Bundler
@format_executable = options[:format_executable] || false
@build_args = options[:build_args] || Bundler.rubygems.build_args
@gem_bin_dir = "#{Bundler.rubygems.gem_dir}/bin"
- @disable_extentions = options[:disable_extensions]
+ @disable_extensions = options[:disable_extensions]
if Bundler.requires_sudo?
@tmp_dir = Bundler.tmp(spec.full_name).to_s
@@ -27,7 +27,7 @@ module Bundler
SharedHelpers.chdir(@gem_dir) do
run_hooks(:pre_install)
- unless @disable_extentions
+ unless @disable_extensions
build_extensions
run_hooks(:post_build)
end