forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into javax-script-clean-prints
* master: (235 commits) Arity-split Array#sample Handle arity errors better in sample Arity split and handle bad kwargs in shuffle Spec appears to be intermittently failing Adjust specs for unpack/pack 'j and 'J' support Implement unpack/pack 'j' aand 'J' Restore getrlimit and frozen string tags Restore two pack tags mistakenly removed Sweep passing library tags Sweep passing UnboundMethod tags Sweep tags for TracePoint Sweep passing Time tags Sweep passing Process tags Sweep passing ObjectSpace tags Sweep passing tags for Thread and friends Sweep passing tags for Hash, Marshal Sweep passing Kernel tags Sweep passing tags for Env, Exception, File, IO Sweep passing tags for core numerics Sweep passing Comparable tags ...
- Loading branch information
Showing
728 changed files
with
9,606 additions
and
35,123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rspec', '3.9.0' | ||
gem 'rspec-expectations', '3.9.2' # pinned to work around jruby/jruby#6452 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# JRuby - an implementation of the Ruby language on the JVM | ||
|
||
Master: [![Build Status](https://travis-ci.org/jruby/jruby.svg?branch=master)](https://travis-ci.org/jruby/jruby) | ||
9.1 branch: [![Build Status](https://travis-ci.org/jruby/jruby.svg?branch=jruby-9.1)](https://travis-ci.org/jruby/jruby/branches) | ||
Master: [![Build Status](https://travis-ci.com/jruby/jruby.svg?branch=master)](https://travis-ci.org/jruby/jruby) | ||
9.2 branch: [![Build Status](https://travis-ci.com/jruby/jruby.svg?branch=jruby-9.2)](https://travis-ci.org/jruby/jruby/branches) | ||
|
||
## About | ||
|
||
|
@@ -36,7 +36,7 @@ version is very old. | |
An alternative is to use one of the [Ruby version managers](https://www.ruby-lang.org/en/documentation/installation/#managers). | ||
|
||
For [`rbenv`](https://github.com/sstephenson/rbenv) you will need the | ||
[`ruby-build`](https://github.com/sstephenson/ruby-build) plugin. You may find that your system | ||
[`ruby-build`](https://githubcom/sstephenson/ruby-build) plugin. You may find that your system | ||
package manager can provide these. To see which versions of JRuby are available you should run: | ||
|
||
``` | ||
|
@@ -46,11 +46,11 @@ $ rbenv install jruby | |
Note: if you do not regularly git update rbenv this list of versions may be out of date. | ||
|
||
We recommend always selecting the latest version of JRuby from the list. | ||
You can install that particular version (9.1.17.0 is just for illustration): | ||
You can install that particular version (9.2.13.0 is just for illustration): | ||
|
||
|
||
``` | ||
$ rbenv install jruby-9.1.17.0 | ||
$ rbenv install jruby-9.2.13.0 | ||
``` | ||
|
||
For [`rvm`](https://rvm.io) you can simply do: | ||
|
@@ -92,6 +92,14 @@ Project Contact: Thomas E Enebo <[email protected]> | |
|
||
## License | ||
|
||
JRuby is licensed to you under three licenses - the EPL 2.0, GPL 2 and LGPL 2.1. | ||
JRuby is licensed under a tri EPL/GPL/LGPL license. You can use it, | ||
redistribute it and/or modify it under the terms of the: | ||
|
||
Eclipse Public License version 2.0 | ||
OR | ||
GNU General Public License version 2 | ||
OR | ||
GNU Lesser General Public License version 2.1 | ||
|
||
Some components have other licenses and copyright. See the [COPYING](COPYING) | ||
file for more specifics. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.