1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00

[Fix #1395] Remove JRuby things

JRuby section in GETTING_STARTED.md file was very old. So, it was
removed.
This commit is contained in:
Hazhir Derakhshi 2020-05-19 20:54:23 +04:30 committed by Daniel Colson
parent ae2fce1874
commit 656dfc7d0c

View file

@ -3,7 +3,6 @@ Getting Started
* [Setup](#setup)
+ [Update Your Gemfile](#update-your-gemfile)
+ [JRuby](#jruby)
+ [Configure your test suite](#configure-your-test-suite)
- [RSpec](#rspec)
- [Test::Unit](#testunit)
@ -95,18 +94,6 @@ If you're *not* using Rails:
gem "factory_bot"
```
### JRuby
JRuby users: factory\_bot works with JRuby starting with 1.6.7.2 (latest stable,
as per July 2012). JRuby has to be used in 1.9 mode, for that, use JRUBY_OPTS
environment variable:
```bash
export JRUBY_OPTS=--1.9
```
Once your Gemfile is updated, you'll want to update your bundle.
### Configure your test suite
#### RSpec