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: 7d97f4aebcb7
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e95a4925602b
Choose a head ref
  • 11 commits
  • 46 files changed
  • 1 contributor

Commits on Jan 12, 2015

  1. Copy the full SHA
    ebccec6 View commit details
  2. [Truffle] Pulled in Rubinius's implementation of Enumerable now that …

    …Rubinius.single_block_arg works.
    nirvdrum committed Jan 12, 2015
    Copy the full SHA
    f61c2c6 View commit details
  3. Copy the full SHA
    ab0256a View commit details
  4. Copy the full SHA
    361e040 View commit details
  5. Copy the full SHA
    24dcf50 View commit details
  6. Copy the full SHA
    cd998aa View commit details
  7. Copy the full SHA
    28e743e View commit details
  8. Copy the full SHA
    8f8f95c View commit details
  9. Copy the full SHA
    249ee7b View commit details
  10. Copy the full SHA
    7899944 View commit details
  11. Copy the full SHA
    e95a492 View commit details
Showing with 781 additions and 767 deletions.
  1. +0 −552 core/src/main/java/org/jruby/truffle/nodes/core/ArrayNodes.java
  2. +50 −0 core/src/main/java/org/jruby/truffle/nodes/rubinius/RubiniusSingleBlockArgNode.java
  3. +2 −14 core/src/main/java/org/jruby/truffle/runtime/core/CoreLibrary.java
  4. +7 −0 core/src/main/java/org/jruby/truffle/translator/BodyTranslator.java
  5. +0 −4 core/src/main/ruby/jruby/truffle/core/rubinius/api/shims/rubinius.rb
  6. +721 −0 core/src/main/ruby/jruby/truffle/core/rubinius/kernel/common/enumerable.rb
  7. +0 −11 spec/truffle/tags/core/enumerable/all_tags.txt
  8. +0 −10 spec/truffle/tags/core/enumerable/any_tags.txt
  9. +0 −1 spec/truffle/tags/core/enumerable/chunk_tags.txt
  10. +0 −2 spec/truffle/tags/core/enumerable/collect_tags.txt
  11. +0 −7 spec/truffle/tags/core/enumerable/count_tags.txt
  12. +0 −8 spec/truffle/tags/core/enumerable/detect_tags.txt
  13. +0 −3 spec/truffle/tags/core/enumerable/drop_tags.txt
  14. +0 −4 spec/truffle/tags/core/enumerable/drop_while_tags.txt
  15. +0 −2 spec/truffle/tags/core/enumerable/each_cons_tags.txt
  16. +0 −2 spec/truffle/tags/core/enumerable/each_entry_tags.txt
  17. +0 −4 spec/truffle/tags/core/enumerable/each_slice_tags.txt
  18. +0 −5 spec/truffle/tags/core/enumerable/each_with_index_tags.txt
  19. +0 −2 spec/truffle/tags/core/enumerable/each_with_object_tags.txt
  20. +0 −3 spec/truffle/tags/core/enumerable/find_all_tags.txt
  21. +0 −10 spec/truffle/tags/core/enumerable/find_index_tags.txt
  22. +0 −7 spec/truffle/tags/core/enumerable/find_tags.txt
  23. +0 −12 spec/truffle/tags/core/enumerable/first_tags.txt
  24. +0 −3 spec/truffle/tags/core/enumerable/include_tags.txt
  25. +0 −9 spec/truffle/tags/core/enumerable/inject_tags.txt
  26. +0 −2 spec/truffle/tags/core/enumerable/map_tags.txt
  27. +0 −7 spec/truffle/tags/core/enumerable/max_by_tags.txt
  28. +0 −2 spec/truffle/tags/core/enumerable/max_tags.txt
  29. +0 −3 spec/truffle/tags/core/enumerable/member_tags.txt
  30. +0 −7 spec/truffle/tags/core/enumerable/min_by_tags.txt
  31. +0 −2 spec/truffle/tags/core/enumerable/min_tags.txt
  32. +0 −7 spec/truffle/tags/core/enumerable/minmax_by_tags.txt
  33. +0 −5 spec/truffle/tags/core/enumerable/minmax_tags.txt
  34. +0 −9 spec/truffle/tags/core/enumerable/none_tags.txt
  35. +0 −9 spec/truffle/tags/core/enumerable/one_tags.txt
  36. +0 −3 spec/truffle/tags/core/enumerable/partition_tags.txt
  37. +0 −9 spec/truffle/tags/core/enumerable/reduce_tags.txt
  38. +0 −3 spec/truffle/tags/core/enumerable/reject_tags.txt
  39. +0 −3 spec/truffle/tags/core/enumerable/select_tags.txt
  40. +0 −1 spec/truffle/tags/core/enumerable/slice_before_tags.txt
  41. +0 −3 spec/truffle/tags/core/enumerable/sort_by_tags.txt
  42. +0 −11 spec/truffle/tags/core/enumerable/take_tags.txt
  43. +0 −4 spec/truffle/tags/core/enumerable/take_while_tags.txt
  44. +0 −1 spec/truffle/tags/core/enumerable/to_a_tags.txt
  45. +0 −1 spec/truffle/tags/core/enumerable/zip_tags.txt
  46. +1 −0 spec/truffle/truffle.mspec
Loading