| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-11-28 | Remove two removed constants | aycabta | |
| 2019-11-28 | Fix ghost method line no | aycabta | |
| 2019-11-26 | Remove an unnecessary variable | aycabta | |
| 2019-11-26 | Slightly fix the warning message [ci skip] | Takashi Kokubun | |
| I'm not sure, but maybe it was gramatically incorrect? | |||
| 2019-11-26 | Suggest an alternative to suppress the irb warning | Takashi Kokubun | |
| 2019-11-25 | Cache loaded module to suppress method redefined warnings | aycabta | |
| 2019-11-25 | Remove e2mmap dependency | aycabta | |
| 2019-11-25 | Remove lib/irb/slex.rb | aycabta | |
| 2019-11-24 | Remove debug code... | aycabta | |
| 2019-11-24 | Disable tracer ext of IRB when tracer doesn't found | aycabta | |
| 2019-11-23 | Tracer.set_get_line_procs should support block and Proc object | aycabta | |
| Original Tracer.set_get_line_procs is implemented by "def set_get_line_procs(p = proc)". It means that original Tracer.set_get_line_procs supports block and Proc object. | |||
| 2019-11-23 | Tracer.add_filter should support block and Proc object | aycabta | |
| Original Tracer.add_filter is implemented by "def add_filter(p = proc)". It means that original Tracer.add_filter supports block and Proc object. | |||
| 2019-11-21 | Use more strict regexp to avoid to match naninanirb.rb | Kazuhiro NISHIYAMA | |
| 2019-11-21 | Support %U/%u/%W/%w/%V/%g/%G formats in Time.strptime | Jeremy Evans | |
| Most of these formats were documented as supported, but were not actually supported. Document that %g and %G are supported. If %U/%W is specified without yday and mon/mday are not specified, then Date.strptime is used to get the appropriate yday. If cwyear is specifier without the year, or cwday and cweek are specified without mday and mon, then use Date.strptime and convert the resulting value to Time, since Time.make_time cannot handle those conversions Fixes [Bug #9836] Fixes [Bug #14241] Notes: Merged: https://github.com/ruby/ruby/pull/2685 | |||
| 2019-11-21 | [ruby/reline] Version 0.0.7 | aycabta | |
| https://github.com/ruby/reline/commit/09d370bdc19e62f0a27c2240e19b07963afd922f | |||
| 2019-11-21 | Version 0.0.6 | aycabta | |
| 2019-11-21 | Version 1.1.0 | aycabta | |
| 2019-11-21 | Consider escape sequence to calculate prompt width | aycabta | |
| 2019-11-21 | Add a warning message and --legacy of an alias of --singleline | aycabta | |
| 2019-11-21 | Refactor filter_backtrace | Y. Ushiki | |
| 2019-11-21 | Fix filter_backtrace for context-mode 0 | Y. Ushiki | |
| 2019-11-21 | Use singleline/multiline instead of readline/reidline | aycabta | |
| 2019-11-21 | Change argument `Proc` to `#call` defined object. | manga_osyo | |
| This is the same as the behavior of Readline. | |||
| 2019-11-21 | Add <Home> <End> keys. | manga_osyo | |
| 2019-11-20 | Mintty on Cygwin isn't a kind of command prompt, can process ANSI escape code | aycabta | |
| 2019-11-20 | Fix indent of a line when a newline is inserted to the next | aycabta | |
| 2019-11-20 | Replace typo "bock" with "block" | aycabta | |
| 2019-11-20 | A preceding token of "do" of block has EXPR_CMDARG or EXPR_ENDFN | aycabta | |
| meth do # the preceding token of "do" has EXPR_CMDARG end meth() do # the preceding token of "do" has EXPR_ENDFN end | |||
| 2019-11-20 | Number sign comment (# bla bla) is a kind of newline character | aycabta | |
| 2019-11-20 | Generate history file path correctly when $HOME/.irbrc doesn't exist | aycabta | |
| 2019-11-19 | Suppress `stty` error on Apple Terminal | Nobuyoshi Nakada | |
| `stty` called in `Reline::ANSI.deprep` command shows the following error message on macOS Apple Terminal, with some settings. ``` $ LANG=C irb irb(main):001:0> stty: 'standard input': unable to perform all requested operations stty: 'standard input': unable to perform all requested operations ``` | |||
| 2019-11-18 | [ruby/rss] Only check taint on Ruby <2.7 | Jeremy Evans | |
| Ruby 2.7 deprecates taint and it no longer has an effect. Notes: Merged: https://github.com/ruby/ruby/pull/2476 | |||
| 2019-11-18 | [ruby/rexml] Only taint on Ruby <2.7 | Jeremy Evans | |
| Ruby 2.7 deprecates taint and it no longer has an effect. Notes: Merged: https://github.com/ruby/ruby/pull/2476 | |||
| 2019-11-18 | Deprecate taint/trust and related methods, and make the methods no-ops | Jeremy Evans | |
| This removes the related tests, and puts the related specs behind version guards. This affects all code in lib, including some libraries that may want to support older versions of Ruby. Notes: Merged: https://github.com/ruby/ruby/pull/2476 | |||
| 2019-11-18 | Warn on access/modify of $SAFE, and remove effects of modifying $SAFE | Jeremy Evans | |
| This removes the security features added by $SAFE = 1, and warns for access or modification of $SAFE from Ruby-level, as well as warning when calling all public C functions related to $SAFE. This modifies some internal functions that took a safe level argument to no longer take the argument. rb_require_safe now warns, rb_require_string has been added as a version that takes a VALUE and does not warn. One public C function that still takes a safe level argument and that this doesn't warn for is rb_eval_cmd. We may want to consider adding an alternative method that does not take a safe level argument, and warn for rb_eval_cmd. Notes: Merged: https://github.com/ruby/ruby/pull/2476 | |||
| 2019-11-18 | Remove unnecessary check | aycabta | |
| 2019-11-17 | [ruby/irb] Remove ruby-token.rb from spec.files | aycabta | |
| https://github.com/ruby/irb/commit/0180dc74bc | |||
| 2019-11-17 | [ruby/irb] Version 1.1.0.pre.4 | aycabta | |
| https://github.com/ruby/irb/commit/4945d0e676 | |||
| 2019-11-17 | [ruby/reline] Version 0.0.5 | aycabta | |
| https://github.com/ruby/reline/commit/d57c7ea252 | |||
| 2019-11-17 | Fix typos | Kazuhiro NISHIYAMA | |
| 2019-11-15 | [ruby/reline] Restore left cursor key support on Unix like OSes... | aycabta | |
| https://github.com/ruby/reline/commit/98b72af751 | |||
| 2019-11-15 | Implement em_set_mark and em_exchange_mark | aycabta | |
| 2019-11-15 | Fix a typo [ci skip] | Kazuhiro NISHIYAMA | |
| 2019-11-13 | Suppress warnings except for when last evaluation | aycabta | |
| Co-authored-by: Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | |||
| 2019-11-13 | Fix a typo | Kazuhiro NISHIYAMA | |
| 2019-11-13 | Merge released version of RubyGems 3.1.0.pre3 | Hiroshi SHIBATA | |
| 2019-11-13 | Merge Bundler 2.1.0.pre3 released version | Hiroshi SHIBATA | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2674 | |||
| 2019-11-12 | Reline#readline and Reline#readmultiline to private. | osyo-manga | |
| 2019-11-12 | Only enabled mon_owned condition with Ruby 2.5+ | Hiroshi SHIBATA | |
| 2019-11-12 | Revert "Method reference operator" | Nobuyoshi Nakada | |
| This reverts commit 67c574736912003c377218153f9d3b9c0c96a17b. [Feature #16275] | |||
