| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
The "target" in `RbConfig::CONFIG` is being changed from config.sub to
align to the system `uname`. Use the value modified by config.sub, and
make the directory same as GNU utilities, such as binutils.
Notes:
Merged: https://github.com/ruby/ruby/pull/12043
|
|
From under "libexec", under `$(target)/bin` like as binutils.
Notes:
Merged: https://github.com/ruby/ruby/pull/12043
|
|
"libexec" means the directory for executable or binary files already.
Notes:
Merged: https://github.com/ruby/ruby/pull/12043
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/12034
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/12003
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/12003
|
|
`lib/json/ext/generator/state.rb` should actually be
`ext/json/lib/json/ext/generator/state.rb`
Notes:
Merged: https://github.com/ruby/ruby/pull/11999
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11978
|
|
* YJIT: Replace Array#each only when YJIT is enabled
* Add comments about BUILTIN_ATTR_C_TRACE
* Make Ruby Array#each available with --yjit as well
* Fix all paths that expect a C location
* Use method_basic_definition_p to detect patches
* Copy a comment about C_TRACE flag to compilers
* Rephrase a comment about add_yjit_hook
* Give METHOD_ENTRY_BASIC flag to Array#each
* Add --yjit-c-builtin option
* Allow inconsistent source_location in test-spec
* Refactor a check of BUILTIN_ATTR_C_TRACE
* Set METHOD_ENTRY_BASIC without touching vm->running
Notes:
Merged-By: maximecb <maximecb@ruby-lang.org>
|
|
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11969
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11969
|
|
So that rubygems can find them as gems. However, the `--install-dir`
option of `gem install` seems to exclude prerelease gems, even already
installed in that directory, from the dependencies for some reasons;
use the `GEM_HOME` environment variable instead.
Now net-imap 0.5.0 depends on json gem.
Notes:
Merged: https://github.com/ruby/ruby/pull/11969
|
|
When RUBY_TEST_TIMEOUT_SCALE is set, the timeout increases by the multiple
specified. However, the test in test4test_hungup.rb does not scale, so
if RUBY_TEST_TIMEOUT_SCALE is a large number like 10, then the test will
not time out causing the tests test to fail.
Notes:
Merged: https://github.com/ruby/ruby/pull/11959
|
|
This reverts commit 58797b7f74737b8896583c9bfa6546ef6756681a.
|
|
- Fix filtering by ARGV
- Adjust top library names from gem names
- Skip if no tests found
Notes:
Merged: https://github.com/ruby/ruby/pull/11957
|
|
|
|
|
|
supported
Notes:
Merged: https://github.com/ruby/ruby/pull/11887
|
|
Signed-off-by: Samuel Giddins <segiddins@segiddins.me>
Notes:
Merged: https://github.com/ruby/ruby/pull/11860
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11846
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11791
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11841
|
|
Other command line options are no longer needed usually.
Notes:
Merged: https://github.com/ruby/ruby/pull/11832
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/3705
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11763
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11756
|
|
This caused an issue when `defined?` was in the `if` condition. Its
instructions weren't appended to the instruction sequence even though it was compiled
if a compile-time known logical short-circuit happened before the `defined?`. The catch table
entry (`defined?` compilation produces a catch table entry) was still on the iseq even though the
instructions weren't there. This caused faulty exception handling in the method.
The solution is to no add the catch table entry for `defined?` after a compile-time known logical
short circuit.
This shouldn't touch much code, it's only for cases like the following,
which can occur during debugging:
if false && defined?(Some::CONSTANT)
"more code..."
end
Fixes [Bug #20501]
Notes:
Merged: https://github.com/ruby/ruby/pull/11554
|
|
https://github.com/ruby/actions/actions/runs/11095032727/job/30823174026#step:3:349
|
|
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/9915
|
|
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11624
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11612
|
|
|
|
This commit switches the default parser to Prism. There are a
couple of additional changes related to this that are a part of
this as well to make this happen.
* Switch the default parser in parse.h
* Remove the Prism-specific workflow and add a parse.y-specific
workflow to CI so that it continues to be tested
* Update a few test exclusions since Prism has the correct
behavior but parse.y doesn't per
https://bugs.ruby-lang.org/issues/20504.
* Skips a couple of tests on RBS which are failing because they
are using RubyVM::AbstractSyntaxTree.of.
Fixes [Feature #20564]
Notes:
Merged: https://github.com/ruby/ruby/pull/11497
|
|
Single `Integer` argument means an exact match to the major version.
Notes:
Merged: https://github.com/ruby/ruby/pull/11604
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11590
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/11590
|