summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2020-11-08`Fiber.new(blocking: false)` is now the default.Samuel Williams
Notes: Merged: https://github.com/ruby/ruby/pull/3743
2020-11-07Rename to `Fiber#set_scheduler`.Samuel Williams
Notes: Merged: https://github.com/ruby/ruby/pull/3742
2020-11-05Promote un.rb to the default gems. It's preparation for 3.0.0-preview2.Hiroshi SHIBATA
2020-11-04use httpsHiroshi SHIBATA
2020-11-01Pattern matching is no longer experimentalKazuki Tsujimoto
2020-10-31[DOC] standard_library.rdoc: tweaked to make style consistentNobuyoshi Nakada
[ci skip]
2020-10-30Promote debug.rb to default gems.Hiroshi SHIBATA
It have no upstream repo yet. This change is experimental for 3.0.0-preview2.
2020-10-30Promote win32ole to default gems.Hiroshi SHIBATA
But win32ole gem is still experimental for 3.0.0-preview2. I'm working to extract this library on https://github.com/ruby/win32ole.
2020-10-20Added rbs and typeprof to doc/*Hiroshi SHIBATA
2020-10-19Followed up with 708413807ae958afb79257b18475424e0a8a4a56Hiroshi SHIBATA
* Added sync task for digest * Update doc/* for default gems * Update the latest version of gemspec
2020-10-14Promote pathname to default gemsHiroshi SHIBATA
2020-10-14Promote drb to the default gemsHiroshi SHIBATA
2020-10-12Respectively, instead of respentivelyVictor Goff
Notes: Merged: https://github.com/ruby/ruby/pull/3651
2020-10-10Add Ractor#receive and Ractor.receive and use it in all placesBenoit Daloze
* Keep Ractor#recv/Ractor.recv as an alias for now. Notes: Merged: https://github.com/ruby/ruby/pull/3626
2020-10-08Promote prettyprint to default gemsHiroshi SHIBATA
2020-10-08Promote pp to default gemsHiroshi SHIBATA
2020-10-05Fix traditional Ring example in Actor-modelSvyatoslav Kryukov
Notes: Merged: https://github.com/ruby/ruby/pull/3625
2020-10-02Update marshal.rdocGwitr
Notes: Merged: https://github.com/ruby/ruby/pull/3568
2020-09-29doc/syntax/literals.rdoc: explain `#@@foo` too [ci skip]Nobuyoshi Nakada
2020-09-29doc/syntax/literals.rdoc: explain `#@foo` and `#$foo`Yusuke Endoh
2020-09-21Update NEWS & documentation relating to scheduler.Samuel Williams
Notes: Merged: https://github.com/ruby/ruby/pull/3561
2020-09-17Fix typos [ci skip]Kazuhiro NISHIYAMA
s/overriden/overridden/
2020-09-14Rename `Fiber{}` to `Fiber.schedule{}`.Samuel Williams
Notes: Merged: https://github.com/ruby/ruby/pull/3434
2020-09-12Promote time.rb to default gemsHiroshi SHIBATA
2020-09-11Promote resolv-replace to default gemsHiroshi SHIBATA
2020-09-11Promote resolv to default gemsHiroshi SHIBATA
2020-09-11Promote securerandom to default gemsHiroshi SHIBATA
2020-09-11Promote open-uri to default gemsHiroshi SHIBATA
2020-09-10Promote syslog to default gemsHiroshi SHIBATA
2020-09-10Promote base64 to default gemsHiroshi SHIBATA
2020-09-10Promote shellwords to default gemsHiroshi SHIBATA
2020-09-10Promote abbrev to default gemsHiroshi SHIBATA
2020-09-09Promote tsort to default gemsHiroshi SHIBATA
2020-09-06Add `*.md` to doc/.document [ci skip]Kazuhiro NISHIYAMA
2020-09-05Fixed some typos in ractor.md (#3522)Ashwin Elangovan
Notes: Merged-By: marcandre <github@marc-andre.ca>
2020-09-05Fix typo in ractor.mdandrewmelis
Notes: Merged: https://github.com/ruby/ruby/pull/3520
2020-09-04Fix typos in Ractor README.Tom Schady
Notes: Merged: https://github.com/ruby/ruby/pull/3516
2020-09-03Introduce Ractor mechanism for parallel executionKoichi Sasada
This commit introduces Ractor mechanism to run Ruby program in parallel. See doc/ractor.md for more details about Ractor. See ticket [Feature #17100] to see the implementation details and discussions. [Feature #17100] This commit does not complete the implementation. You can find many bugs on using Ractor. Also the specification will be changed so that this feature is experimental. You will see a warning when you make the first Ractor with `Ractor.new`. I hope this feature can help programmers from thread-safety issues. Notes: Merged: https://github.com/ruby/ruby/pull/3365
2020-09-03Fix a typo [ci skip]Kazuhiro NISHIYAMA
2020-08-28Add alias treatment to method_documentation.rdoc (#3468)Burdette Lamar
* Add alias treatment to method_documentation.rdoc Notes: Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
2020-08-25Add documentation to "dcompact" callback and "parent" memberLars Kanis
Notes: Merged: https://github.com/ruby/ruby/pull/3396
2020-08-25Promote nkf to default gemsHiroshi SHIBATA
2020-08-23Fix typosKazuhiro NISHIYAMA
2020-08-21Promote erb to default gemsHiroshi SHIBATA
2020-08-21Promote rinda to default gemsHiroshi SHIBATA
2020-08-20Promote find to default gemsHiroshi SHIBATA
2020-08-20Promote set to default gemsHiroshi SHIBATA
2020-08-14[DOC] fixed the method nameNobuyoshi Nakada
2020-08-13Adding doc/dig_methods.rdoc and links to it (#3416)Burdette Lamar
Adds a full discussion of #dig, along with links from Array, Hash, Struct, and OpenStruct. CSV::Table and CSV::Row are over in ruby/csv. I'll get to them soon. The art to the thing is to figure out how much (or how little) to say at each #dig. Notes: Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
2020-08-10Add Method Documentation Guide (#3399)Jeremy Evans
This documents how methods for core classes and classes in the standard library should be documented. Co-authored-by: Eric Hodel <drbrain@segment7.net> Notes: Merged-By: jeremyevans <code@jeremyevans.net>