diff options
author | bronzdoc <[email protected]> | 2019-07-28 07:50:11 -0600 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2019-07-31 07:47:02 +0800 |
commit | d97fc48e92dbee041a476f7dca65f3d466c8ca91 (patch) | |
tree | b5aa26ae1d440f924423cb0d2e691856379b74c1 /lib | |
parent | a51661d378c26ae5bd4b608de4948887e70bcacc (diff) |
[rubygems/rubygems] Remove useless param +build_dir+
https://github.com/rubygems/rubygems/commit/0402974149
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rubygems/ext/builder.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rubygems/ext/builder.rb b/lib/rubygems/ext/builder.rb index 974e1799a1..eced7c3fe1 100644 --- a/lib/rubygems/ext/builder.rb +++ b/lib/rubygems/ext/builder.rb @@ -134,9 +134,9 @@ class Gem::Ext::Builder end ## - # Logs the build +output+ in +build_dir+, then raises Gem::Ext::BuildError. + # Logs the build +output+, then raises Gem::Ext::BuildError. - def build_error(build_dir, output, backtrace = nil) # :nodoc: + def build_error(output, backtrace = nil) # :nodoc: gem_make_out = write_gem_make_out output message = <<-EOF |