Giter VIP home page Giter VIP logo

truffleruby's Introduction

TruffleRuby logo

TruffleRuby is the GraalVM high-performance implementation of the Ruby programming language built by Oracle Labs.

Getting Started

There are three ways to install TruffleRuby releases and nightly builds:

  • Via GraalVM, which includes support for other languages such as JavaScript, R and Python and supports both the native and JVM configurations. Inside GraalVM will then be a bin/ruby command that runs TruffleRuby. We recommend that you use a Ruby manager to use TruffleRuby inside GraalVM.

  • Via your Ruby manager/installer (RVM, rbenv, chruby, ruby-build, ruby-install). This contains only TruffleRuby, in the native configuration, making it a smaller download. It is meant for users just wanting a Ruby implementation and already using a Ruby manager.

  • Using the standalone distribution as a simple binary tarball.

We recommend trying TruffleRuby nightly builds which contain the latest fixes and improvements:

RVM:    $ rvm install truffleruby-head
rbenv:  $ rbenv install truffleruby-dev
chruby: $ ruby-build truffleruby-dev ~/.rubies/truffleruby-dev

See the Ruby installers documentation for more details.

Testing TruffleRuby in CI is easy: on TravisCI, you can use:

language: ruby
rvm:
  - truffleruby # or truffleruby-head

And on GitHub Actions:

- uses: ruby/setup-ruby@v1
  with:
    ruby-version: truffleruby # or truffleruby-head

See Testing TruffleRuby in CI for more details and other CIs.

You can use gem and bundle to install Gems as normal.

Please report any issue you might find on GitHub.

Aim

TruffleRuby aims to:

  • Run idiomatic Ruby code faster
  • Run Ruby code in parallel
  • Boot Ruby applications in less time
  • Execute C extensions in a managed environment
  • Add fast and low-overhead interoperability with languages like Java, JavaScript, Python and R
  • Provide new tooling such as debuggers and monitoring that work across languages
  • All while maintaining very high compatibility with the standard implementation of Ruby

TruffleRuby Runtime Configurations

There are two main runtime configurations of TruffleRuby: Native and JVM which make different trade-offs.

Configuration: Native (--native, default) JVM (--jvm)
Time to start TruffleRuby about as fast as MRI startup slower
Time to get to peak performance faster slower
Peak performance (also considering GC) good best
Java host interoperability needs reflection configuration just works

To find out which runtime configuration is used, run ruby --version on the command line or check the value of RUBY_DESCRIPTION or TruffleRuby.native? in Ruby code. Runtime configurations are further detailed in Deploying TruffleRuby.

System Compatibility

TruffleRuby is actively tested on these systems:

  • Oracle Linux 7
  • Ubuntu 18.04 LTS
  • Ubuntu 16.04 LTS
  • Fedora 28
  • macOS 10.14 (Mojave)
  • macOS 10.15 (Catalina)

Architectures:

  • AMD64 (aka x86_64): Supported
  • AArch64 (aka arm64): Experimental, C extensions do not work yet on AArch64

You may find that TruffleRuby will not work if you severely restrict the environment, for example by unmounting system filesystems such as /dev/shm.

Dependencies

  • make and gcc for building C and C++ extensions.
  • libssl for the openssl C extension
  • zlib for the zlib C extension

Without these dependencies, many libraries including RubyGems will not work. TruffleRuby will try to print a nice error message if a dependency is missing, but this can only be done on a best effort basis.

You may also need to set up a UTF-8 locale.

See the contributor workflow document if you wish to build TruffleRuby from source.

Current Status

We recommend that people trying TruffleRuby on their gems and applications get in touch with us for help.

TruffleRuby is progressing fast but is currently probably not ready for you to try running your full Rails application on. However it is ready for experimentation and curious end-users to try on their gems and smaller applications, and to send us reports of issues they find.

Releases

TruffleRuby has the same version and is released at the same time as GraalVM. There is a release every 3 months, see the release roadmap. There are additional Critical Patch Update releases which are based on regular releases and include extra security fixes.

Migration from MRI

TruffleRuby should in most cases work as a drop-in replacement for MRI, but you should read about our compatibility.

Migration from JRuby

For many use cases TruffleRuby should work as a drop-in replacement for JRuby. However, our approach to integration with Java is different to JRuby so you should read our migration guide.

Documentation

Extensive user documentation is available in doc/user.

See our source code repository and contributor documentation to contribute to TruffleRuby. In particular, see the contributor workflow document for how to build and run TruffleRuby.

Contact

The best way to get in touch with us is to join the channel #truffleruby of the GraalVM Slack. You can also Tweet to @TruffleRuby, or email [email protected].

Please report security vulnerabilities via the process outlined at reporting vulnerabilities guide, rather than by something public such as a GitHub issue or a Gitter conversation.

Mailing List

Announcements about GraalVM, including TruffleRuby, are made on the graal-dev mailing list.

Authors

The main authors of TruffleRuby ordered by first contribution are: Chris Seaton, Benoit Daloze, Kevin Menard, Petr Chalupa, Brandon Fish, Duncan MacGregor, Christian Wirth, Rafael França, Alan Wu, Nicolas Laurent, Carol Chen.

Security

See SECURITY.md for how to report security vulnerabilities to Oracle. For known vulnerabilities in Ruby, please refer to the known-cves.md file.

Licence

TruffleRuby is copyright (c) 2013-2019 Oracle and/or its affiliates, and is made available to you under the terms of any one of the following three licenses:

  • Eclipse Public License version 2.0, or
  • GNU General Public License version 2, or
  • GNU Lesser General Public License version 2.1.

See LICENCE.md, 3rd_party_licenses.txt and doc/legal/legal.md.

Attribution

TruffleRuby is a fork of JRuby, combining it with code from the Rubinius project, and also containing code from the standard implementation of Ruby, MRI.

truffleruby's People

Contributors

aardvark179 avatar atambo avatar banzaiman avatar bdortch avatar bjfish avatar calavera avatar cheald avatar chrisseaton avatar dmarcotte avatar donv avatar enebo avatar eregon avatar etehtsea avatar ghostganz avatar headius avatar kares avatar komax avatar lopex avatar lucasallan avatar mkristian avatar nicksieger avatar nirvdrum avatar olabini avatar pitr-ch avatar qmx avatar subbuss avatar timfel avatar vp-of-awesome avatar vvs avatar yokolet avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.