Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The framework work with either ruby-2.3.x or jruby-9.1.510.0. It is always cleaner to use a new gemset (rvm use jruby-9.1.510.0@connector-test --create). You'll may want to create a .ruby-version file in your project folder so that it takes this gemset by default.

...

Code Block
languagebash
# With JRuby
rvm use jruby-9.1.510.0@connector-test --create

# With MRI
rvm use ruby-2.3.1@connector-test --create

# Install rails
gem install rails -v '4.2.7'

...