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: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8752abb6b728
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 60df0be9b89f
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jul 13, 2015

  1. Add Boolean#eql?

    Fix #1003
    vais committed Jul 13, 2015
    Copy the full SHA
    8efd3ec View commit details
  2. Merge pull request #1004 from vais/boolean-eql

    Add Boolean#eql?
    vais committed Jul 13, 2015
    Copy the full SHA
    60df0be View commit details
Showing with 3 additions and 1 deletion.
  1. +1 −0 opal/corelib/boolean.rb
  2. +1 −0 spec/filters/unsupported/kernel.rb
  3. +1 −1 spec/rubyspec
1 change: 1 addition & 0 deletions opal/corelib/boolean.rb
Original file line number Diff line number Diff line change
@@ -31,6 +31,7 @@ def ==(other)
end

alias equal? ==
alias eql? ==

alias singleton_class class

1 change: 1 addition & 0 deletions spec/filters/unsupported/kernel.rb
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@
fails "Kernel#Integer is a private method"
fails "Kernel#Integer returns a Fixnum or Bignum object"
fails "Kernel#String is a private method"
fails "Kernel#eql? is a public instance method"
fails "Kernel#format is a private method"
fails "Kernel#sleep accepts a Rational"
fails "Kernel#sleep is a private method"
2 changes: 1 addition & 1 deletion spec/rubyspec