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
base: f48399a73f53
Choose a base ref
...
head repository: jruby/jruby
compare: 82ab6e3181af
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 5, 2018

  1. Fix Enumerable#uniq for entry pair

    The second part of the pair was ignored before which resulted e.g.
    
    class Foo
      include Enumerable
      def each
        yield 1
        yield 1,2
      end
    end.new.to_enum.uniq -> [1] instead of [1, [1,2]]
    
    Fixes test/mri/ruby/test_enum.rb#test_uniq test.
    ChrisBr committed Apr 5, 2018
    Configuration menu
    Copy the full SHA
    daa9010 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2018

  1. Merge pull request #5129 from ChrisBr/test/fix-enum-uniq

    Fix Enumerable#uniq for entry pair
    headius committed Apr 12, 2018
    Configuration menu
    Copy the full SHA
    82ab6e3 View commit details
    Browse the repository at this point in the history