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

Commits on Apr 29, 2014

  1. Add Module#public_class_method

    elia committed Apr 29, 2014

    Verified

    This commit was signed with the committer’s verified signature.
    endocrimes Danielle
    Copy the full SHA
    b36e4c5 View commit details
  2. Tweak spectator config

    elia committed Apr 29, 2014

    Verified

    This commit was signed with the committer’s verified signature.
    endocrimes Danielle
    Copy the full SHA
    f958d6b View commit details
Showing with 9 additions and 7 deletions.
  1. +2 −2 .spectator-mspec
  2. +2 −2 bin/opal-mspec
  3. +5 −3 opal/corelib/module.rb
4 changes: 2 additions & 2 deletions .spectator-mspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BASE_DIR_REGEXP: '(?:opal/corelib|stdlib|spec)'
SPEC_DIR_REGEXP: '(?:spec/corelib/(?:core|language)|spec/stdlib/\w+/spec)'
BASE_DIR_REGEXP: '(?:opal/corelib|stdlib)'
SPEC_DIR_REGEXP: '(?:spec/corelib/(?:core|language)|spec/stdlib/.*?/spec\b)'
RSPEC_COMMAND: 'bundle exec ./bin/opal-mspec'

# RSPEC_COMMAND: "bundle exec mspec run -t ./bin/opal -I $(dirname $(gem which mspec)) -I lib/ -rmspec/opal/mspec_fixes.rb spec/corelib/"
4 changes: 2 additions & 2 deletions bin/opal-mspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env ruby

specs = ARGV.map do |s|
s.end_with?('.rb') ? s : "#{s}/**/*_spec.rb"
s.end_with?('.rb') ? s : "#{s}/**/**/*_spec.rb"
end
pattern = %Q{MSPEC_PATTERN="{#{specs.join(',').inspect}}"} if specs.any?
pattern = %Q{MSPEC_PATTERN="{#{specs.join(',')}}"} if specs.any?
command = [pattern, 'rake mspec'].compact.join(' ')
puts "Executing: #{command}"
exec command
8 changes: 5 additions & 3 deletions opal/corelib/module.rb
Original file line number Diff line number Diff line change
@@ -445,12 +445,14 @@ def name
def public(*)
end

alias private public
alias protected public
alias nesting public

def private_class_method(name)
`self['$' + name] || nil`
end

alias private public
alias protected public
alias public_class_method private_class_method

def private_method_defined?(obj)
false