summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-15Remove debug printaycabta
2019-07-15Support multiline irb_historyaycabta
A history line ends with "\" to escape newline if it's a continuous line.
2019-07-15time.c (time_mdump): use another buffer for year_extendYusuke Endoh
ruby_marshal_write_long may write 9 bytes, but buf has only 8 bytes. So the buffer cannot be reused. This issue was found by Coverity Scan.
2019-07-15Unify documentations of `make benchmark`Takashi Kokubun
2019-07-15Drop `make change` and tool/change_maker.rbTakashi Kokubun
because we're not writing ChangeLog anymore.
2019-07-15Reduce the number of make help entriesTakashi Kokubun
We've added some more things recently. It seems not worth having almost the same two entries there anymore.
2019-07-15Mention SPECOPTS variable in make helpTakashi Kokubun
2019-07-15Check wether prompt_i is nilaycabta
2019-07-15Save history in IRB is enabled by defaultaycabta
2019-07-15Auto indent in IRB is enabled by defaultaycabta
2019-07-15Version 1.1.0.pre.2aycabta
2019-07-15Need reline-0.0.1 or later for some featuresaycabta
2019-07-15Version 0.0.1aycabta
2019-07-15Remove unused method.manga_osyo
2019-07-15[ruby/matrix] Add Matrix::VERSION constantMarcus Stollsteimer
Add Matrix::VERSION for the gem version, use it in the gemspec, and make it also available for library users. https://github.com/ruby/matrix/commit/65c2bb1fa1
2019-07-15[ruby/matrix] Add missing `lib/matrix/' files to file list in gemspecMarcus Stollsteimer
https://github.com/ruby/matrix/commit/2bbb9be233
2019-07-15Add a /* fall through */ commentYusuke Endoh
2019-07-15Add a /* fall through */ commentYusuke Endoh
2019-07-15Add a /* fall through */ commentYusuke Endoh
2019-07-15ext/stringio/stringio.c (strio_read): "binray" is always zero hereYusuke Endoh
Remove unused conditional expression to suppress Coverity Scan warnings.
2019-07-15Rename to Reline::History::Test.manga_osyo
2019-07-15Add `class Reline::History` and test.manga_osyo
2019-07-15Suppress warningsMasataka Pocke Kuwabara
2019-07-15[ruby/rdoc] Bump version to 6.1.1aycabta
https://github.com/ruby/rdoc/commit/55c0627fe0
2019-07-15[ruby/rdoc] Correction to include regexp_handling in list of loaded filespoloka
https://github.com/ruby/rdoc/commit/1940b2318c
2019-07-15Add a /* fall through */ commentYusuke Endoh
2019-07-15dir.c (dir_each_entry): remove unnecessary checkYusuke Endoh
I guess that this check was to detect re-entrance (maybe callcc?). But currently it does not work as intended.
2019-07-15* 2019-07-15git
2019-07-15process.c (p_sys_setregid, p_sys_setresgid): remove unused tmp bufferYusuke Endoh
To suppress Coverity Scan warning
2019-07-14Add a /* fall through */ commentYusuke Endoh
2019-07-14string.c (str_succ): refactoringYusuke Endoh
Use more communicative variable name
2019-07-14string.c (str_succ): remove a unnecessary assignmentYusuke Endoh
This change will suppress Coverity Scan warnings
2019-07-14[ruby/csv] Fix a bug that strip: true removes newlinesKouhei Sutou
https://github.com/ruby/csv/commit/5540d35a30
2019-07-14[ruby/csv] add options doc :quote_empty (#89)kawa_tech
https://github.com/ruby/csv/commit/5ca8d79f60
2019-07-14[ruby/csv] Add options doc: :write_converters, :write_nil_value, ↵Masafumi Koba
:write_empty_value (#87) https://github.com/ruby/csv/commit/5923ee08b7
2019-07-14[ruby/csv] add document of strip (#88)hayashiyoshino
* add document of strip * modify typo https://github.com/ruby/csv/commit/de0257dc31
2019-07-14[ruby/csv] Bump versionKouhei Sutou
https://github.com/ruby/csv/commit/3976985008
2019-07-14[ruby/csv] Don't raise on eof?Kouhei Sutou
GitHub: fix #86 Reported by krororo. Thanks!!! https://github.com/ruby/csv/commit/5a8d9d9297
2019-07-14[ruby/csv] Refactor range in delete_suffix (#85)Kazuhiro NISHIYAMA
https://github.com/ruby/csv/commit/7ff57a50e8
2019-07-14[ruby/csv] Bump versionKouhei Sutou
https://github.com/ruby/csv/commit/312f844693
2019-07-14Tweak upstream information of upstream commit.Hiroshi SHIBATA
2019-07-14transcode.c (rb_trans_conv): remove unnecessary assignmentsYusuke Endoh
This change will suppress Coverity Scan warnings
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