Sha256: 369813c0e8a91c3a5e1feac698855879ed42a6077fe8ead564df4a2fc9cf6249

Contents?: true

Size: 614 Bytes

Versions: 16

Compression:

Stored size: 614 Bytes

Contents

module RbConfig
  versions = RUBY_VERSION.split('.')
  CONFIG = {
    'ruby_version' => RUBY_VERSION,
    'MAJOR'        => versions[0],
    'MINOR'        => versions[1],
    'TEENY'        => versions[2],
    'RUBY'         => RUBY_ENGINE,
    'RUBY_INSTALL_NAME' => RUBY_ENGINE,
    'ruby_install_name' => RUBY_ENGINE,
    'RUBY_SO_NAME'      => RUBY_ENGINE,
    'target_os'         => 'ECMA-262',
    'host_os'           => 'ECMA-262',
    'PATH_SEPARATOR'    => ':',
    'EXEEXT'            => '',
    'bindir'            => '',
  }
end

# required for mspec it would appear
RUBY_EXE = 'bundle exec exe/opal'

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
opal-1.8.3.rc1 stdlib/rbconfig.rb
opal-1.8.2 stdlib/rbconfig.rb
opal-1.8.1 stdlib/rbconfig.rb
opal-1.8.0 stdlib/rbconfig.rb
opal-1.8.0.beta1 stdlib/rbconfig.rb
opal-1.7.4 stdlib/rbconfig.rb
opal-1.8.0.alpha1 stdlib/rbconfig.rb
opal-1.7.3 stdlib/rbconfig.rb
opal-1.7.2 stdlib/rbconfig.rb
opal-1.7.1 stdlib/rbconfig.rb
opal-1.7.0 stdlib/rbconfig.rb
opal-1.7.0.rc1 stdlib/rbconfig.rb
opal-1.6.1 stdlib/rbconfig.rb
opal-1.6.0 stdlib/rbconfig.rb
opal-1.6.0.rc1 stdlib/rbconfig.rb
opal-1.6.0.alpha1 stdlib/rbconfig.rb