summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2019-07-13Document $LOAD_PATH.resolve_feature_path in globals.rdocBenoit Daloze
* RDoc does not seem to support documenting singleton object methods, and making $LOAD_PATH a class as a workaround is too weird.
2019-07-13Document a few more RUBY_* constantsBenoit Daloze
2019-07-13Document the long form of global variables and mention aliases on the same lineBenoit Daloze
* The longer forms are self-explanatory and I believe more often used. * Same for ARGV and ARGF, describe them there and mention $* and $< just refer to them.
2019-07-13Relaxed delta of nanosec from Float timeNobuyoshi Nakada
2019-07-13Removed useless `freeze`s from gemspec filesNobuyoshi Nakada
2019-07-13Drop fossil rubygems supportNobuyoshi Nakada
2019-07-13Removed stub lines from gemspec filesNobuyoshi Nakada
2019-07-13change default value of load_limit (ignore load_limit)Masatoshi SEKI
2019-07-13* 2019-07-13git
2019-07-13Removed binary lineNobuyoshi Nakada
2019-07-12* remove trailing spaces.Nobuyoshi Nakada