Module: BSON::Environment
Overview
Provides static helper methods around determining what environment is running without polluting the global namespace.
Instance Method Summary collapse
-
#jruby? ⇒ true, false
Determine if we are using JRuby or not.
Instance Method Details
#jruby? ⇒ true, false
Determine if we are using JRuby or not.
32 33 34 |
# File 'lib/bson/environment.rb', line 32 def jruby? defined?(JRUBY_VERSION) end |