Module: BSON::Environment

Extended by:
Environment
Included in:
Environment
Defined in:
lib/bson/environment.rb

Overview

Provides static helper methods around determining what environment is running without polluting the global namespace.

Since:

  • 2.0.0

Instance Method Summary collapse

Instance Method Details

#jruby?true, false

Determine if we are using JRuby or not.

Examples:

Are we running with JRuby?

Environment.jruby?

Returns:

  • (true, false)

    If JRuby is our vm.

Since:

  • 2.0.0



32
33
34
# File 'lib/bson/environment.rb', line 32

def jruby?
  defined?(JRUBY_VERSION)
end