Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix JRuby detection on JRuby 9.2 in cpu_counter.rb #265

Merged
merged 2 commits into from
Oct 6, 2018

Commits on May 24, 2018

  1. Fix JRuby detection on JRuby 9.2 in cpu_counter.rb

    Java::Java is no longer defined by default, it's not defined
    until it is accessed:
    
    $ jruby -e 'p defined?(Java::Java)'
    nil
    $ jruby -e 'p Java::Java'
    Java::Java
    
    In earlier JRuby versions, defined?(Java::Java) returned
    "constant".
    jeremyevans committed May 24, 2018
    Configuration menu
    Copy the full SHA
    acae4a2 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2018

  1. Configuration menu
    Copy the full SHA
    c376a93 View commit details
    Browse the repository at this point in the history