Skip to content

Commit

Permalink
Merge pull request #1534 from kachick/update-specifying-rubinius
Browse files Browse the repository at this point in the history
Update how to specify rubinius
  • Loading branch information
plaindocs authored Nov 7, 2017
2 parents f6fee63 + 1d04c0a commit 7a36e55
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion user/customizing-the-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ rvm:
- 2.2
- ruby-head
- jruby
- rbx-2
- rbx-3
- ree
gemfile:
- gemfiles/Gemfile.rails-2.3.x
Expand Down
6 changes: 3 additions & 3 deletions user/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ When you define multiple variables per line in the `env` array (matrix variables
```yaml
rvm:
- 1.9.3
- rbx
- rbx-3
env:
- FOO=foo BAR=bar
- FOO=bar BAR=foo
Expand All @@ -56,8 +56,8 @@ this configuration triggers **4 individual builds**:

1. Ruby 1.9.3 with `FOO=foo` and `BAR=bar`
2. Ruby 1.9.3 with `FOO=bar` and `BAR=foo`
3. Rubinius latest version (rbx) with `FOO=foo` and `BAR=bar`
4. Rubinius latest version (rbx) with `FOO=bar` and `BAR=foo`
3. Rubinius latest version (rbx-3) with `FOO=foo` and `BAR=bar`
4. Rubinius latest version (rbx-3) with `FOO=bar` and `BAR=foo`

### Global Variables

Expand Down
2 changes: 1 addition & 1 deletion user/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ To start using Travis CI, make sure you have *all* of the following:
rvm:
- 2.2
- jruby
- rbx-2
- rbx-3
```
{: data-file=".travis.yml"}
Expand Down
6 changes: 3 additions & 3 deletions user/languages/ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ one is available.
<!-- distro exception -->

If you're using OS X or Trusty environments, you can also use
[Rubinius](http://rubini.us). To test with Rubinius, add `rbx-X.Y.Z` to your
`.travis.yml`, where X.Y.Z specifies a Rubinius release listed on
[Rubinius](http://rubini.us). To test with Rubinius, add `rbx-X` or `rbx-X.Y.Z`
to your `.travis.yml`, where X.Y.Z specifies a Rubinius release listed on
[http://rubies.travis-ci.org/rubinius](http://rubies.travis-ci.org/rubinius) .

```yaml
language: ruby
dist: trusty
rvm:
- rbx-3.69
- rbx-3
```
{: data-file=".travis.yml"}

Expand Down

0 comments on commit 7a36e55

Please sign in to comment.