summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-14Include ruby/assert.h in ruby/ruby.h so that assertions can be thereNobuyoshi Nakada
2019-07-14[DOC] Fix a typo [ci skip]Kazuhiro NISHIYAMA
2019-07-14addr2line.c (main_exe_path): avoid SEGV when /proc is not availableYusuke Endoh
readlink would return -1 if /proc is not mounted. Coverity Scan found this issue.
2019-07-14complement '.rb' on `test-all TESTS=test_xxx`Koichi Sasada
for test-all rule, we can specify a file with TESTS option like `TESTS=test_xxx.rb`. However, we can eliminate last '.rb' suffix so this patch try with '.rb' suffix if the given path is not available.
2019-07-14Fix links to headingsMaxime Lapointe
A previous change made the header's id be fully referenced (for the sidebar I believe) but this broke links to them. This fixes the issue.
2019-07-14* expand tabs.git
2019-07-14Split RUBY_ASSERT and so on under include/rubyNobuyoshi Nakada
2019-07-14Describe about Pathname.glob.Tanaka Akira
2019-07-14Delegates 3 arguments for Pathname.glob.Tanaka Akira
Thanks for the patch by pocke (Masataka Kuwabara) [Feature #14405].
2019-07-14Add a /* fall through */ commentYusuke Endoh
2019-07-14Describe warning of open-uri.Tanaka Akira
2019-07-14Warn open-uri's "open" method at Kernel.Tanaka Akira
Use URI.open instead. Thanks for the patch by jeremyevans0 (Jeremy Evans) [Misc #15893].
2019-07-14* expand tabs.git
2019-07-14Prefer `rb_error_arity` to `rb_check_arity` when it can be usedYusuke Endoh
2019-07-14Calculate float complex division per each partNobuyoshi Nakada
Arguments to f_complex_new2 should not be Complex, or violate the assertion.
2019-07-14* expand tabs.git
2019-07-14compile.c (defined_expr): return void instead of intYusuke Endoh
It always returned 1.
2019-07-14io.c (rb_file_open_internal): initialize all the fieldsYusuke Endoh
Just for case. This will suppress the warning of Coverity Scan.
2019-07-14[DOC] Fix typos [ci skip]Kazuhiro NISHIYAMA
2019-07-14[DOC] Fix indent [ci skip]Kazuhiro NISHIYAMA
2019-07-14fix issue with 'SIGINT' handling in LineEditor#resetLuke Gruber
@old_trap is the string "DEFAULT" and not a callable object (Proc) if there are no other signal handlers for SIGINT signal to chain.
2019-07-14Method#inspect with source location.Koichi Sasada
Method#inspect shows with source location. [Feature #14145]
2019-07-14Removed FileUtils for file manipulations with module inclusion.Hiroshi SHIBATA
2019-07-14Use FileUtils.mkdir_p instead of mkdir command directoly.Hiroshi SHIBATA
2019-07-14Use FileUtils.cp_r instead of cp command directoly.Hiroshi SHIBATA
2019-07-14Fixup dccb0e1ec94e7b9c13c715939ae7e0ccc4ffb23eHiroshi SHIBATA
2019-07-14Use FileUtils.rm_rf instead of rm command directly.Hiroshi SHIBATA
2019-07-14Do not use hard-coded file path of default gems upstream.Hiroshi SHIBATA
2019-07-14Describe lambda-ness of Proc more.Tanaka Akira
2019-07-14[DOC] Fix link to feature [ci skip]Kazuhiro NISHIYAMA
2019-07-14Fix typos [ci skip]Kazuhiro NISHIYAMA
2019-07-14NEWS: warning of flip-flop is reverted [ci skip]Kazuhiro NISHIYAMA
2019-07-14[DOC] Fix experimental marker [ci skip]Kazuhiro NISHIYAMA
2019-07-14Add a /* fall through */ commentYusuke Endoh
2019-07-14Drop obsoleted mjit_cancel_ivar debug_counterTakashi Kokubun
ivar_cancel label is handling mjit_cancel_ivar_inline instead.
2019-07-14* expand tabs.git
2019-07-14Add /* fall through */ commentsYusuke Endoh
to suppress some Coverity Scan warnings
2019-07-14* expand tabs.git
2019-07-14Avoid io_tell whose return value is not usedYusuke Endoh
In this case, flush_before_seek is enough. This change will suppress a warning of Coverity Scan.
2019-07-14Update dependencies for 369ff79394765ce198ac7cee872a8c739d895aaaTakashi Kokubun
Just copy-pasting diff from https://travis-ci.org/ruby/ruby/jobs/558407687
2019-07-14Refactor mjit_worker command line with C99Takashi Kokubun
Mostly non-constatnt array initializer, and mixed declarations and code.
2019-07-14add encoding conversion from/to CESU-8Martin Dürst
Add encoding conversion (transcoding) from UTF-8 to CESU-8 and back. CESU-8 is an encoding similar to UTF-8, but encodes codepoints above U+FFFF as two surrogates, these surrogates again being encoded as if they were UTF-8 codepoints. This preserves the same binary sorting order as in UTF-16. It is also somewhat similar (although not exactly identical) to an encoding used internally by Java. This completes issue #15995. enc/trans/cesu_8.trans: Add encoding conversion from/to CESU-8 test/ruby/test_transcode.rb: Add tests for above
2019-07-14Add empty depend file if extconf.rb only existsNobuyoshi Nakada
2019-07-14* 2019-07-14git
2019-07-14Added depend filesNobuyoshi Nakada
2019-07-13[DOC] Markup code in globals.rdocNobuyoshi Nakada
Look forward to further improvements in RDoc to automatically mark up global variables and global constants.
2019-07-13Improve documentation in doc/globals.rdocBenoit Daloze
2019-07-13Document $~ before dependent global variablesBenoit Daloze
2019-07-13Improve documentation of $LOAD_PATHBenoit Daloze
2019-07-13Add $LOAD_PATH.resolve_feature_path in NEWSBenoit Daloze