module Coercible

Constants

EXTRA_CONST_ARGS
UnsupportedCoercion
VERSION

Public Class Methods

rbx?() click to toggle source

Test for rubinius platform

@return [true]

if running under rubinius

@return [false]

otherwise

@api private

# File lib/coercible.rb, line 15
def self.rbx?
  @is_rbx ||= defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
end