| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-08-20 | Treat two types "do" correctly | aycabta | |
| A "do" what has followed a token what has EXPR_CMDARG is for a block, and in other cases "do" is for "while", "until" or "for". | |||
| 2019-07-27 | Use JRuby equivalent of RubyVM.compile. | Charles Oliver Nutter | |
| RubyVM is specific to CRuby and not supported on JRuby. This is the equivalent operation. | |||
| 2019-07-03 | Check code_block_open for whether code continues | aycabta | |
| 2019-07-02 | Keyword token that follows EXPR_FNAME must be a method name | aycabta | |
| 2019-06-28 | Remove auto indent of continuation line | aycabta | |
| 2019-06-28 | Removed unused variable | Nobuyoshi Nakada | |
| 2019-06-27 | EXPR_LABEL also indicates non-continuation line | aycabta | |
| Example: [ 1, # this is not continuation line 2 ] | |||
| 2019-06-27 | EXPR_CMDARG also indicates the end of an expression | aycabta | |
| 2019-06-27 | Increase indent of continuation line | aycabta | |
| v = 3 # auto indent | |||
| 2019-06-26 | Decrease nesting level when closing token comes at a non-first token of line | aycabta | |
| 2019-06-26 | `ensure` is not a continuos line | Nobuyoshi Nakada | |
| 2019-06-26 | Decrease indent at "elsif" too | Nobuyoshi Nakada | |
| 2019-06-26 | Remove other debug prints | Nobuyoshi Nakada | |
| 2019-06-26 | Remove debug print...sorry | aycabta | |
| 2019-06-25 | Treat auto indent with newline correctly | aycabta | |
| 2019-06-25 | Decrease indent when "else", "rescue", "ensure", "when", or "in" come | aycabta | |
| 2019-06-25 | Refactor calculation of corresponding token depth | aycabta | |
| 2019-06-22 | Treat closing token with starting token at head of 2nd line correctly | aycabta | |
| v = if true # starting token at head of 2nd line 3 end # closing token | |||
| 2019-06-22 | Do auto indent only when closing token at first of line | aycabta | |
| if true 3; end # this isn't auto-indented | |||
| 2019-06-21 | Support irregular auto indent | aycabta | |
| v = if true 3 end # this "end" is auto-indented correctly | |||
| 2019-06-19 | Use IRB.conf[:AUTO_INDENT] setting in multiline mode | aycabta | |
| 2019-06-18 | Fix auto indent crash when blank input | aycabta | |
| 2019-06-18 | Implement auto indent for multiline | aycabta | |
| 2019-06-16 | Implement line_no correctly | aycabta | |
| 2019-06-14 | Use Reline.prompt_proc in IRB | aycabta | |
| 2019-06-13 | make sync-default-gems GEM=irb | Takashi Kokubun | |
| Upgrade IRB to https://github.com/ruby/irb/commit/41ea43a4a732e094acfa1b0fc1473fdcda9e6227 Mostly backport changes. | |||
| 2019-06-12 | Treat "begin rescue end" correctly | aycabta | |
| 2019-05-30 | Check the end token of heredoc correctly | aycabta | |
| 2019-05-28 | Treat :@1, :@@1, @1, and @@1 correctly to check termination | aycabta | |
| 2019-05-28 | Supress duplicated warning | Kazuki Tsujimoto | |
| 2019-05-27 | Use IRB::InputMethod#eof? to quit | aycabta | |
| 2019-05-27 | Support op, cvar, iver, gvar and kw that follow on symbeg in IRB | aycabta | |
| 2019-05-25 | JSON like label ends by differs from the start | aycabta | |
| pp Ripper.lex('{ "a": 3 }') => [[[1, 0], :on_lbrace, "{", EXPR_BEG|EXPR_LABEL], [[1, 1], :on_sp, " ", EXPR_BEG|EXPR_LABEL], [[1, 2], :on_tstring_beg, "\"", EXPR_BEG|EXPR_LABEL], [[1, 3], :on_tstring_content, "a", EXPR_BEG|EXPR_LABEL], [[1, 4], :on_label_end, "\":", EXPR_BEG|EXPR_LABEL], [[1, 6], :on_sp, " ", EXPR_BEG|EXPR_LABEL], [[1, 7], :on_int, "3", EXPR_END], [[1, 8], :on_sp, " ", EXPR_END], [[1, 9], :on_rbrace, "}", EXPR_END]] | |||
| 2019-05-25 | Use Reline as Reidline multiline editor in IRB | aycabta | |
| 2019-05-21 | Symbol beginning token may take a constant token | aycabta | |
| 2019-05-21 | IRB should eval and show an error when only `.` is inputted | aycabta | |
| 2019-04-30 | Use Ripper for IRB | aycabta | |
| The debug option of IRB is deleted because it's just for IRB's pure Ruby parser. | |||
| 2019-04-23 | Revert "IRB is improved with Reline and RDoc, take 2" | Nobuyoshi Nakada | |
| Accidentally merged when 89271d4a3733bc5e70e9c56b4bd12f277e699c42 "Adjusted indents". | |||
| 2019-04-23 | IRB is improved with Reline and RDoc, take 2 | aycabta | |
| 2019-04-21 | Revert "IRB is improved with Reline and RDoc" | aycabta | |
| This reverts commit 7f273ac6d0f05208b5b228da95205e20c0e8286c. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2019-04-20 | IRB is improved with Reline and RDoc | aycabta | |
| Reline is a readline stdlib compatible library. It also supports multiline input. IRB is improved with Reline and supports multiline. Besides, supports showing documents when completed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2018-11-02 | lib/*: Prefer require_relative over require, remove explicit extension | marcandre | |
| [#15206] [Fix GH-1976] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2018-11-02 | lib/*: Prefer require_relative over require. | marcandre | |
| [#15206] [Fix GH-1976] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65505 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2017-04-20 | ruby-lex.rb: fix continued line conditions | nobu | |
| * lib/irb/ruby-lex.rb (RubyLex#lex): fix conditions for continued line; empty lines, a semicolon, first line in `begin` block, just after `else` are not continued. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2017-04-20 | ruby-lex.rb: merge regexps | nobu | |
| git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2016-12-08 | ruby-lex.rb: fix for label | nobu | |
| * lib/irb/ruby-lex.rb (identify_identifier): treat identifier just followed by a colon as a lable. this is not a precise solution but enough for the time being. [ruby-core:78526] [Bug #13012] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2015-12-18 | * lib/irb/ruby-lex.rb: fixed parse error for striped heredocument syntax. | hsbt | |
| [fix GH-1127] Patch by @koic git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2015-12-16 | Add frozen_string_literal: false for all files | naruse | |
| When you change this to true, you may need to add more tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2014-08-24 | * lib/e2mmap.rb: remove needless instance variables. | hsbt | |
| * lib/irb.rb: ditto. * lib/irb/**/*.rb: ditto. * lib/shell.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47266 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
| 2014-08-09 | * lib/irb.rb: removed commented-out code. | hsbt | |
| * lib/irb/**/*.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | |||
