aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Treat auto indent with newline correctlyaycabta2019-06-251-10/+42
|
* Decrease indent when "else", "rescue", "ensure", "when", or "in" comeaycabta2019-06-251-0/+2
|
* test/net/imap/test_imap.rb: use Thread#stop? to wait for server threadYusuke Endoh2019-06-251-4/+3
| | | | | Still timeout occurs. Retry for 5dd8fdd3f328f741fae4abba00c478e8a51d2a7e. https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11x/ruby-master/log/20190625T032405Z.fail.html.gz
* Fixed broken ruby/spec related a53ab897c35586a836710a8afeb1e8c1abd9b087Hiroshi SHIBATA2019-06-251-1/+1
|
* Do not allocate a string to check if a scalar is an integerJean Boussier2019-06-252-9/+24
|
* Remove string_cache in ScalarScannerJean Boussier2019-06-251-10/+1
|
* Reduce string allocations in scalar_scannerJean Boussier2019-06-251-17/+15
|
* Removed CHANGELOG from rdoc files.SHIBATA Hiroshi2019-06-251-1/+1
|
* Retired to write CHANGELOG.rdoc. Because It has no update from 2015.SHIBATA Hiroshi2019-06-251-1/+1
|
* Dump Hash ivars before elementsAaron Patterson2019-06-251-9/+9
| | | | | When the Hash is revived, the ivars will be set before elements. This is for the case when the hash setter depends on ivars set on the hash.
* Add test to demonstrate issue deserializing hash with ivarJordan Owens2019-06-251-0/+20
| | | | | | Currently the elements of a hash are revived before any ivar values. This causes an issue when the `[]=` method references an instance variable.
* Round trip exception backtracesAaron Patterson2019-06-253-0/+19
| | | | This commit allows exception backtraces to round trip
* Refactor exception dumpingAaron Patterson2019-06-251-28/+17
|
* Dumping the backtrace never worked, so remove itAaron Patterson2019-06-251-14/+10
| | | | Dumping the backtrace for exceptions never worked, so lets remove it.
* Fix IO#scanf on pipes on WindowsJeremy Evans2019-06-252-1/+8
| | | | | | | IO.seek on a pipe on Windows raises Errno::EINVAL instead of Errno::ESPIPE. Fixes Ruby Bug #15199
* Require version file relativelyDavid Rodríguez2019-06-251-1/+1
|
* Bump version to 1.2.0.SHIBATA Hiroshi2019-06-251-1/+1
|
* Fixed the wrong path for io-console.Hiroshi SHIBATA2019-06-251-1/+1
|
* Order of arguments might be incorrect in arm32 coroutine implementation.Samuel Williams2019-06-251-2/+6
|
* * 2019-06-25git2019-06-251-1/+1
|
* Refactor calculation of corresponding token depthaycabta2019-06-251-18/+33
|
* Try using arm32 implementation for fibers.Samuel Williams2019-06-241-0/+3
|
* remove UNREACHABLENARUSE, Yui2019-06-241-2/+0
|
* array.c: Wrong heap size given to ruby_sized_xfree when freeing shared rootsLuke Gruber2019-06-241-2/+2
| | | | | | Fixes [Bug #15953] Closes: https://github.com/ruby/ruby/pull/2253
* Add new encoding CESU-8 [Feature #15931]NARUSE, Yui2019-06-243-0/+569
|
* Try using arm64 implementation for fibers.Samuel Williams2019-06-241-0/+3
|
* Use spaces for indentation in `configure.ac`.Samuel Williams2019-06-241-22/+22
|
* * remove trailing spaces.git2019-06-241-1/+1
|
* Print warning if not using native coroutine.Samuel Williams2019-06-241-0/+2
|
* * 2019-06-24git2019-06-241-1/+1
|
* httpstatus.rb 100% coveragemasakazutakewaka2019-06-241-0/+35
|
* Adds WebAssembly MIME typeRob2019-06-241-0/+1
|
* Remove extraneous spaces at the end of status lineNobuyoshi Nakada2019-06-242-1/+8
| | | | | | | | | | | | | Remove extraneous spaces after the status code that is non-compliant with RFC, i.e `HTTP 200 OK `, to unnecessary confusion for WEBrick users, by a risk that WEBrick instances in the wild will have server responses flagged as suspicious or malicious due to a similar bug in [Cobalt Strike misconfiguration]. Reported by Matt Tennis <mtennis@paloaltonetworks.com> [Cobalt Strike misconfiguration]: https://blog.fox-it.com/2019/02/26/identifying-cobalt-strike-team-servers-in-the-wild/
* Max length of UNIX socket path is 104 bytes on macOSNobuyoshi Nakada2019-06-231-2/+2
|
* Do not lengthen UNIX socket pathNobuyoshi Nakada2019-06-231-1/+1
| | | | | * spec/ruby/library/socket/unixsocket/recvfrom_spec.rb: do not lengthen UNIX socket path, which is very stricted.
* vcs.rb: handle --dryrun optionNobuyoshi Nakada2019-06-231-23/+55
|
* Update NEWS.Samuel Williams2019-06-241-0/+10
| | | | | - Add note regarding IA64 removal. - Add note about Thread allocation performance improvements.
* array.c add back shared array optimization to ary_ensure_room_for_unshiftLuke Gruber2019-06-231-2/+2
| | | | | | | Bug fix in commit ec8e5f5aa64e2a [Bug #15952] disabled an optimization in this function. Closes: https://github.com/ruby/ruby/pull/2252
* array.c: always check frozenness in Array#unshift. Fixes [Bug #15952]Luke Gruber2019-06-232-1/+13
| | | | Closes: https://github.com/ruby/ruby/pull/2251
* Get rid of error with frozen string literalNobuyoshi Nakada2019-06-232-1/+3
| | | | [Bug #14194]
* Disable frozen-string-literal to disable deduplicationNobuyoshi Nakada2019-06-231-2/+4
| | | | [Bug #14194]
* Get rid of error with frozen string literalMSP-Greg (Greg L)2019-06-231-2/+1
| | | | [Bug #14194]
* Make autoloading_const_entry staticNobuyoshi Nakada2019-06-231-1/+1
|
* * expand tabs.git2019-06-232-71/+71
|
* NEWS: Module#constant_source_locationNobuyoshi Nakada2019-06-231-0/+5
| | | | [Feature #10771]
* Module#constant_source_location [Feature #10771]Nobuyoshi Nakada2019-06-234-0/+176
|
* Split global search for moduleNobuyoshi Nakada2019-06-231-11/+17
|
* Hoisted out autoloading_const_entryNobuyoshi Nakada2019-06-231-8/+21
|
* Fix issue with Array#rindex when rb_equal modifies receiver arrayLuke Gruber2019-06-232-0/+13
| | | | | | Fixes [Bug #15951] Closes: https://github.com/ruby/ruby/pull/2250
* * 2019-06-23git2019-06-231-1/+1
|