summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-14numeric.c (fix_cmp): remove a unreachable return statementYusuke Endoh
2019-07-14Add a /* fall through */ commentYusuke Endoh
2019-07-14doc/globals.rdoc: Add RUBY_REVISION [ci skip]Kazuhiro NISHIYAMA
2019-07-14doc/globals.rdoc: Add RUBY_PATCHLEVEL [ci skip]Kazuhiro NISHIYAMA
2019-07-14doc/globals.rdoc: Add RUBY_COPYRIGHT [ci skip]Kazuhiro NISHIYAMA
2019-07-14doc/globals.rdoc: Add TOPLEVEL_BINDING [ci skip]Kazuhiro NISHIYAMA
2019-07-14Simplify link_o_to_so argumentsTakashi Kokubun
by C99 compound literal for array and non-constant array initializer
2019-07-14fix typos.Tanaka Akira
2019-07-14ruby.c (name_match_p): remove unnecessary conditionYusuke Endoh
It always returns immediately when len was decremented to zero. So len is always positive. This change will suppress Coverity Scan warning.
2019-07-14abort sync commit history when it failed to modify commit message.Hiroshi SHIBATA
2019-07-14Use force flag for filter-branch.Hiroshi SHIBATA
2019-07-14Skip merge commit with rubygems and bundler.Hiroshi SHIBATA
2019-07-14Modified commit message with upstream repository name.Hiroshi SHIBATA
2019-07-14Added chrry-pick feature from upstream repository.Hiroshi SHIBATA
2019-07-14Try to sync with commit history for default gems.Hiroshi SHIBATA
2019-07-14Fix a wrong buffer size to avoid stack corruptionTakashi Kokubun
[Bug #15986]
2019-07-14Add a /* fall through */ commentYusuke Endoh
2019-07-14Check the result of String#-@Nobuyoshi Nakada
2019-07-14socket: use frozen string buffer when releasing GVLTanaka Akira
Thanks for the patch by normalperson (Eric Wong) [Bug #14204].
2019-07-14Expand f_arg to use particular functions directlyNobuyoshi Nakada
2019-07-14Expand f_abs to use particular functions directlyNobuyoshi Nakada
2019-07-14NEWS: RubyVM.resolve_feature_path moved [ci skip]Kazuhiro NISHIYAMA
2019-07-14addr2line.c (binary_filename): extend the buffer for NUL terminatorYusuke Endoh
2019-07-14Increase fetchDepth to prevent checkout failureTakashi Kokubun
like https://dev.azure.com/rubylang/ruby/_build/results?buildId=1637
2019-07-14Make export declaration place more consistentTakashi Kokubun
2019-07-14Removed binop macro which has not been usedNobuyoshi Nakada
2019-07-14MJIT Support for getblockparamproxyTakashi Kokubun
2019-07-14[DOC] Add missing headings [ci skip]Kazuhiro NISHIYAMA
2019-07-14Introduce RUBY_DEBUG flag macroNobuyoshi Nakada
When RUBY_DEBUG is turned on, all RUBY_ASSERT() macros will be enabled regardless RUBY_NDEBUG.
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.