Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ce6a96583ada
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 47b98c69c043
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Nov 13, 2016

  1. Copy the full SHA
    18b3a53 View commit details
  2. Copy the full SHA
    47b98c6 View commit details
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require_relative '../../../../../../../../stdlib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/' + File.basename(__FILE__)
1 change: 0 additions & 1 deletion lib/ruby/truffle/mri/rubygems/util/stringio.rb

This file was deleted.

15 changes: 15 additions & 0 deletions tool/truffle/compare_stdlib.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name = ARGV.first

require 'path'

org = Path("lib/ruby/stdlib/#{name}")
dst = Path("lib/ruby/truffle/mri/#{name}")

a = org.glob("**/*.rb").map { |p| p % org }
b = dst.glob("**/*.rb").map { |p| p % dst }

puts "Extra files:"
puts b-a

puts "Missing files:"
puts a-b