summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEllen Marie Dash <me@duckie.co>2024-01-30 22:05:56 -0500
committergit <svn-admin@ruby-lang.org>2024-03-29 08:03:38 +0000
commita28087affc5cef24376643507f7cb17c5f9c0110 (patch)
tree9f8cd94c1a2fa2021dc68c387337293248c857ac /lib
parentcd12dfd38888cc3d3f4696146d154da15412bc93 (diff)
[rubygems/rubygems] [rebuild_command] Add --diff flag to try using diffoscope.
https://github.com/rubygems/rubygems/commit/3e9545193a
Diffstat (limited to 'lib')
-rw-r--r--lib/rubygems/commands/rebuild_command.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/rubygems/commands/rebuild_command.rb b/lib/rubygems/commands/rebuild_command.rb
index 234d0af856..9747171e5c 100644
--- a/lib/rubygems/commands/rebuild_command.rb
+++ b/lib/rubygems/commands/rebuild_command.rb
@@ -11,6 +11,10 @@ class Gem::Commands::RebuildCommand < Gem::Command
def initialize
super "rebuild", "Attempt to reproduce a build of a gem."
+ add_option "--diff", "If the files don't match, compare them using diffoscope." do |_value, options|
+ options[:diff] = true
+ end
+
add_option "--force", "Skip validation of the spec." do |_value, options|
options[:force] = true
end
@@ -150,6 +154,14 @@ An example of reproducing a gem build:
say "SUCCESS - original and rebuild hashes matched"
else
say "FAILURE - original and rebuild hashes did not match"
+
+ if options[:diff]
+ say
+ if system("diffoscope", old_file, new_file).nil?
+ alert_error "error: could not find `diffoscope` executable"
+ end
+ end
+
terminate_interaction 1
end
end