summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Picked the missing test file from ↵Hiroshi SHIBATA2022-05-201-0/+102
| | | | https://github.com/ruby/did_you_mean/commit/8faba54b2d3ec9aa570691775f143801308c5b2f
* Merge JRuby implementation for stringio and io-waitHiroshi SHIBATA2022-05-202-9/+28
|
* Merge https://github.com/ruby/pathname/pull/8 for pathnameHiroshi SHIBATA2022-05-201-3/+4
|
* Update default gems list at bcdbfe4b6e09c0076571addd1d0dd3 [ci skip]git2022-05-201-0/+2
|
* [ruby/reline] Require Ruby >= 2.6ima1zumi2022-05-201-1/+1
| | | | | | fix https://github.com/ruby/reline/pull/428 https://github.com/ruby/reline/commit/dae9eca323
* [ruby/racc] Show diffsNobuyoshi Nakada2022-05-201-2/+1
| | | | https://github.com/ruby/racc/commit/0b679e2f69
* [ruby/io-nonblock] Remove unnecessary files from the gemNobuyoshi Nakada2022-05-201-8/+8
| | | | https://github.com/ruby/io-nonblock/commit/3850a4c7ac
* [ruby/io-nonblock] Rename `io_nonblock_mode` and extract `set_fcntl_flags`Nobuyoshi Nakada2022-05-201-9/+14
| | | | https://github.com/ruby/io-nonblock/commit/22f08574df
* [ruby/tempfile] Enhanced RDoc for ::new and ::create ↵Burdette Lamar2022-05-201-48/+97
| | | | | | (https://github.com/ruby/tempfile/pull/10) https://github.com/ruby/tempfile/commit/a5e53aa82a
* [ruby/tempfile] Drop unused gemspec directivesOlle Jonsson2022-05-201-2/+0
| | | | | | This gem exposes no executables. https://github.com/ruby/tempfile/commit/07fde5fe14
* [flori/json] Bump version to 2.6.2Florian Frank2022-05-202-2/+2
| | | | https://github.com/flori/json/commit/5de358f655
* [flori/json] Fix parser bug for empty string allocationAndrew Bromwich2022-05-203-0/+17
| | | | | | | | | | When `HAVE_RB_ENC_INTERNED_STR` is enabled it is possible to pass through a null pointer to `rb_enc_interned_str` resulting in a segfault Fixes #495 https://github.com/flori/json/commit/b59368a8c2
* [flori/json] Doc: Improve documentation on JSON#parse and JSON#parse!Hiroshi SHIBATA2022-05-202-0/+2
| | | | | | https://github.com/flori/json/commit/75ada77b96 Co-authored-by: Bruno Gomes da Silva <brunojabs@gmail.com>
* [flori/json] Remove unknown keyword arg from DateTime.parseCharles Oliver Nutter2022-05-201-1/+1
| | | | | | | | | This snuck in while addding tests for the `create_additions` feature. Caught by JRuby when we added the `limit` option to the Date/DateTime parsing methods, which causes this to be rejected as an unknown keyword. https://github.com/flori/json/commit/b1007dff66
* setup vm->main_ractor before `Init_native_thread()`Koichi Sasada2022-05-201-5/+6
|
* `rb_thread_t::serial` for debugKoichi Sasada2022-05-203-24/+30
| | | | | | | | | | | `rb_thread_t::serial` is auto-incremented serial number for threads and it can overflow, it means the serial is not a ID for each thread, it is only for debug print. `RUBY_DEBUG_LOG` shows this information. Also skip EC related information if EC is NULL. This patch enable to use `RUBY_DEBUG_LOG` without setup EC.
* Merge RubyGems and Bundler HEADHiroshi SHIBATA2022-05-2043-95/+121
| | | | https://github.com/rubygems/rubygems/commit/125415593ead9ab69a9f0bb5392c9d7ec61b1f51
* [ruby/did_you_mean] Fix `frozen_string_literal is ignored after any tokens` ↵Jean byroot Boussier2022-05-201-1/+2
| | | | | | | | | | warning. (https://github.com/ruby/did_you_mean/pull/172) ``` did_you_mean/formatters/verbose_formatter.rb:5: warning: `frozen_string_literal' is ignored after any tokens ``` https://github.com/ruby/did_you_mean/commit/531760f323
* [DOC] Add a note to clarify binary flags to `IO.new`David Rodríguez2022-05-201-1/+7
| | | | Try to make it more clear that the `File::BINARY` integer flag, and the `b` string suffix are not equivalent.
* [rubygems/rubygems] Fix locale dependent spec failureDavid Rodríguez2022-05-201-1/+1
| | | | https://github.com/rubygems/rubygems/commit/1fd818743e
* * 2022-05-20 [ci skip]git2022-05-201-1/+1
|
* YJIT: Add opt_succ (#5919)Takashi Kokubun2022-05-192-0/+15
|
* Undefine RUBY_DLN_CHECK_ABI on cygwinDaisuke Fujimura (fd0)2022-05-191-1/+1
|
* [DOC] Re-markup as MarkdownNobuyoshi Nakada2022-05-191-29/+34
|
* Fold too long lines, etc [ci skip]Nobuyoshi Nakada2022-05-191-5/+14
|
* Suppress unused-function [ci skip]Nobuyoshi Nakada2022-05-191-0/+2
|
* Removed subversion section because there is no active branch for svn.Hiroshi SHIBATA2022-05-191-14/+1
|
* * 2022-05-19 [ci skip]git2022-05-191-1/+1
|
* [ruby/timeout] Remove redundant done? checkBenoit Daloze2022-05-191-1/+1
| | | | | | * It's already checked inside #interrupt. https://github.com/ruby/timeout/commit/5f43254f81
* [ruby/timeout] Synchronize all accesses to @doneBenoit Daloze2022-05-191-2/+4
| | | | | | | * So it is trivially correct. * Performance seems the same overall. https://github.com/ruby/timeout/commit/5e0d8e1637
* [ruby/timeout] Handle Timeout + fork and add test for itBenoit Daloze2022-05-192-22/+49
| | | | https://github.com/ruby/timeout/commit/4baee63b9b
* [ruby/timeout] Reimplement Timeout.timeout with a single thread and a QueueBenoit Daloze2022-05-192-37/+101
| | | | https://github.com/ruby/timeout/commit/2bafc458f1
* Clean intermediate object filesNobuyoshi Nakada2022-05-181-0/+1
|
* Verbose mode on libyjit mergeNobuyoshi Nakada2022-05-181-2/+2
|
* Extract YJIT_LIBS directly without copyingNobuyoshi Nakada2022-05-181-2/+1
|
* `AR` does not need the absolute pathNobuyoshi Nakada2022-05-181-5/+6
| | | | | Still use `find` to get rid of potential ARGV limit overflow, since rustc-genrated object file names are mangled and very long.
* [DOC] Use `make gdb-ruby` and `make lldb-ruby` in ↵Kaíque Kandy Koga2022-05-181-2/+2
| | | | doc/contributing/building_ruby.md
* Write skipping instead of skiping [ci skip]Kaíque Kandy Koga2022-05-181-1/+1
| | | https://www.lexico.com/en/definition/skip
* Update default gems list at 6b6d7df39db2447dd675b2558aab69 [ci skip]git2022-05-181-0/+1
|
* [ruby/psych] Prepare to develop 5.0.0Hiroshi SHIBATA2022-05-181-1/+1
| | | | https://github.com/ruby/psych/commit/c3b5183f42
* [ruby/psych] [CI] Add/update 'rake install', update Psych version for Ruby ↵MSP-Greg2022-05-181-1/+1
| | | | | | 3.1 gem install https://github.com/ruby/psych/commit/2fa5e190b5
* * 2022-05-18 [ci skip]git2022-05-181-1/+1
|
* [ruby/irb] Fix documents for .irbrc pathKouhei Yanagita2022-05-181-3/+6
| | | | https://github.com/ruby/irb/commit/af99c01b0d
* Move feature deletion from GC mark to `autoload_delete`. (#5912)Samuel Williams2022-05-171-6/+10
|
* Restore implicit relationship between `autoload_const` and `autoload_data` ↵Samuel Williams2022-05-172-62/+136
| | | | during GC. (#5911)
* Suppress an unused-but-set-variable warning [ci skip]Nobuyoshi Nakada2022-05-171-3/+5
|
* * 2022-05-17 [ci skip]git2022-05-171-1/+1
|
* Set `target_os` for a7577dbfd3ea53cccf7aaf94208069784ad17791Nobuyoshi Nakada2022-05-171-0/+1
|
* [ruby/set] Fix a typoKazuhiro NISHIYAMA2022-05-161-1/+1
| | | | https://github.com/ruby/set/commit/71a876ae81
* Delete autoload data from global features after autoload has completed. (#5910)Samuel Williams2022-05-175-262/+353
| | | | | * Update naming of critical section assertions macros. * Improved locking for autoload.