Age | Commit message (Collapse) | Author |
|
Notes:
Merged-By: maximecb <[email protected]>
|
|
* YJIT: Count the number of failed instructions
* Rename yjit_insns_count to exec_instructions instead
* Hoist out the exec_instruction counter
Notes:
Merged-By: maximecb <[email protected]>
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/8087
Merged-By: nobu <[email protected]>
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/8077
Merged-By: XrXr
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/8007
|
|
https://bugs.ruby-lang.org/issues/19728
Notes:
Merged: https://github.com/ruby/ruby/pull/7944
Merged-By: nobu <[email protected]>
|
|
|
|
https://github.com/ruby/yarp/commit/97547b6192
|
|
Since [Misc #19679] migrated the wiki, these links should be updated
to their new locations.
Notes:
Merged-By: jemmaissroff
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7993
|
|
Notes:
Merged-By: peterzhu2118 <[email protected]>
|
|
(https://github.com/ruby/csv/pull/280)
https://github.com/ruby/csv/commit/0dcfcd9c48
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7979
|
|
|
|
|
|
Notes:
Merged-By: peterzhu2118 <[email protected]>
|
|
|
|
https://github.com/ruby/rdoc/commit/1e550b7d02
|
|
|
|
This are implemented as Kernel methods and not keywords, but I
still think they are worth documenting with the other control
flow expressions.
Notes:
Merged: https://github.com/ruby/ruby/pull/7856
Merged-By: jeremyevans <[email protected]>
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7861
|
|
(https://github.com/ruby/csv/pull/276)
I've fixed the example in `Recipe: Capture Unconverted Fields`.
https://ruby.github.io/csv/doc/csv/recipes/parsing_rdoc.html#label-Recipe-3A+Capture+Unconverted+Fields
`parsed` is wrong: header row is missing and the values should be
integers.
```
$ ruby -v
ruby 3.2.1 (2023-02-08 revision https://github.com/ruby/csv/commit/31819e82c8) [x86_64-darwin21]
$ cat unconverted_fields.rb
require "csv"
source = "Name,Value\nfoo,0\nbar,1\nbaz,2\n"
parsed = CSV.parse(source, converters: :integer, unconverted_fields: true)
p parsed
parsed.each {|row| p row.unconverted_fields }
$ ruby unconverted_fields.rb
[["Name", "Value"], ["foo", 0], ["bar", 1], ["baz", 2]]
["Name", "Value"]
["foo", "0"]
["bar", "1"]
["baz", "2"]
```
Notes:
Merged: https://github.com/ruby/ruby/pull/7851
|
|
https://github.com/ruby/csv/commit/d5e401266f
Notes:
Merged: https://github.com/ruby/ruby/pull/7851
|
|
(https://github.com/ruby/csv/pull/190)
https://github.com/ruby/csv/commit/2102c78384
Notes:
Merged: https://github.com/ruby/ruby/pull/7851
|
|
(https://github.com/ruby/csv/pull/166)
https://github.com/ruby/csv/commit/1d685aede3
Notes:
Merged: https://github.com/ruby/ruby/pull/7851
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7840
|
|
https://bugs.ruby-lang.org/issues/19637
Co-authored-by: Nobuyoshi Nakada <[email protected]>
Notes:
Merged: https://github.com/ruby/ruby/pull/7798
Merged-By: yui-knk <[email protected]>
|
|
|
|
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7792
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7785
|
|
|
|
|
|
I initially thought this macro is referencing binary, not basic instruction name
Notes:
Merged-By: k0kubun <[email protected]>
|
|
Document `make yjit-smoke-test`
|
|
Co-Authored-By: sawa (Tsuyoshi Sawada) <[email protected]>
Notes:
Merged: https://github.com/ruby/ruby/pull/7526
|
|
for test_assembler.rb to work
|
|
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7153
|
|
[Misc #16671]
I'd like to bump it to 2.7 to use pattern matching in
tool/mk_builtin_loader.rb.
However, I experienced a few blockers. 2.5 seems like the closest
version that is easy enough to use on CIs, so let me bump the version to
it as an intermediate step for it. I want to use &. and <<~ in 2.3 too.
Known blockers:
* AppVeyor Visual Studio 2015 doesn't have Ruby 2.7. You'd need to bump
the version to Visual Studio 2019.
* GitHub Actions windows-2019 doesn't have Ruby 2.7 either. You
can use ruby/setup-ruby, but configure doesn't seem to work with it.
* For ruby/ruby-ci-imaage, bionic doesn't have Ruby 2.7. I tried using
ruby-build to build Ruby 2.7 from package, but the build on its CI
seems to somehow loop forever when I do that. So I gave it up for now.
We might want to wait until bionic becomes EOL.
Note:
* AppVeyor Visual Studio 2015 has Ruby <= 2.6.3
https://www.appveyor.com/docs/windows-images-software/#ruby
* GitHub Actions windows-2019 uses Ruby 2.5.9
https://github.com/actions/runner-images/blob/main/images/win/Windows2019-Readme.md
Notes:
Merged-By: k0kubun <[email protected]>
|
|
|
|
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7462
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7462
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/7462
|
|
|