| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-09-05 | [rubygems/rubygems] Remove unnecessary gem_name method | bronzdoc | |
| https://github.com/rubygems/rubygems/commit/d1bb122651 | |||
| 2019-09-05 | [rubygems/rubygems] Error out if there are multiple gemspecs and no gemspec ↵ | bronzdoc | |
| is specified https://github.com/rubygems/rubygems/commit/547947bbf0 | |||
| 2019-09-05 | [rubygems/rubygems] Build the first gemspec we found if no gemspec is specified | bronzdoc | |
| https://github.com/rubygems/rubygems/commit/ab186266b7 | |||
| 2019-09-05 | [rubygems/rubygems] Improve gemspec assignment and error message | bronzdoc | |
| https://github.com/rubygems/rubygems/commit/dc70c5a192 | |||
| 2019-09-05 | [rubygems/rubygems] Make passing a gem name to be optional | bronzdoc | |
| https://github.com/rubygems/rubygems/commit/4ba4ffebbe | |||
| 2019-09-05 | [rubygems/rubygems] Move build gem logic to its own method | bronzdoc | |
| https://github.com/rubygems/rubygems/commit/a16eacd650 | |||
| 2019-09-05 | [rubygems/rubygems] Don't fail when `uninstall --all` with default gem | David Rodríguez | |
| Instead, display an informative message saying that uninstallation of specific versions is being skipped because of being default gems. https://github.com/rubygems/rubygems/commit/b44845aa1d | |||
| 2019-09-05 | [rubygems/rubygems] Use IAM role to extract security-credentials for EC2 ↵ | Alexander Pakulov | |
| instance https://github.com/rubygems/rubygems/commit/9a401646e1 | |||
| 2019-09-05 | [rubygems/rubygems] Move empty check earlier | David Rodríguez | |
| https://github.com/rubygems/rubygems/commit/fc224e9717 | |||
| 2019-09-02 | Add Net::FTP#features and Net::FTP#option | Shugo Maeda | |
| Patch by darkphnx (Dan Wentworth) . Thanks! [Feature #15964] | |||
| 2019-09-02 | Treat Japanese IME on/off code correctly | aycabta | |
| 2019-09-01 | IRB 1.1.0.pre.3 | aycabta | |
| 2019-09-01 | Reline 0.0.2 | aycabta | |
| 2019-09-01 | Re-calculate state variables of screen when screen size changes | aycabta | |
| 2019-08-31 | Use double splat for keyword args by a hash object in lib/un.rb | aycabta | |
| 2019-08-30 | Fix a couple of bundler issues with keyword argument separation | Jeremy Evans | |
| There are more issues than this, but hopefully this is enough to get make test-bundler passing in CI. Notes: Merged: https://github.com/ruby/ruby/pull/2395 | |||
| 2019-08-30 | Fix keyword argument separation issues in lib | Jeremy Evans | |
| Mostly requires adding ** in either calls or method definitions. Notes: Merged: https://github.com/ruby/ruby/pull/2395 | |||
| 2019-08-30 | Revert "require 'pp' before use PP" | Kazuhiro NISHIYAMA | |
| of lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb. This reverts commit 500149709b92ccb36396589a0c39afb3ff77bfb6 partially. | |||
| 2019-08-30 | Removed debug print | Nobuyoshi Nakada | |
| It seems to be fixed by b870ca58791e576f5dbb263f54ae433a7f6d65ee. | |||
| 2019-08-30 | Add guard as same as `==` | Kazuhiro NISHIYAMA | |
| Try to fix failure at https://github.com/ruby/ruby/runs/207580232#step:10:382 ``` undefined method `name' for "Gemfile.lock":String /home/runner/work/ruby/ruby/lib/bundler/resolver/spec_group.rb:65:in `eql?' ``` | |||
| 2019-08-30 | lib/pp.rb: Use UnboundMethod#bind_call instead of .bind(obj).call(...) | Yusuke Endoh | |
| Related to [Feature #15955]. | |||
| 2019-08-30 | require 'pp' before use PP | Kazuhiro NISHIYAMA | |
| `Kernel#pp` has wrapper, but `PP` does not. https://github.com/ruby/ruby/runs/207405029#step:10:141 `NameError: uninitialized constant Bundler::Molinillo::Resolver::Resolution::PP` | |||
| 2019-08-29 | Check events that console window size changed on Windows | aycabta | |
| 2019-08-29 | Fix alignment of a SHORT variable | aycabta | |
| typedef struct _COORD { SHORT X; SHORT Y; // I wanted to take this... } COORD, *PCOORD; typedef struct _CONSOLE_SCREEN_BUFFER_INFO { COORD dwSize; COORD dwCursorPosition; // ...of this one WORD wAttributes; // But it's combined with first 2bytes of this SMALL_RECT srWindow; COORD dwMaximumWindowSize; } CONSOLE_SCREEN_BUFFER_INFO; If wAttributes has non-zero value, the code breaks. | |||
| 2019-08-29 | CONSOLE_SCREEN_BUFFER_INFO is 22bytes | aycabta | |
| typedef struct _CONSOLE_SCREEN_BUFFER_INFO { COORD dwSize; // 4(SHORT X, Y) COORD dwCursorPosition; // 4 WORD wAttributes; // 2 SMALL_RECT srWindow; // 8(SHORT Left, Top, Right, Bottom) COORD dwMaximumWindowSize; // 4 } CONSOLE_SCREEN_BUFFER_INFO; | |||
| 2019-08-29 | Add stub set_screen_size for other platforms | aycabta | |
| 2019-08-29 | Support SIGWINCH | aycabta | |
| 2019-08-28 | Remove jquery.js from file list of rdoc.gemspec | aycabta | |
| 2019-08-28 | Adjusted indents and supplied last commas | Nobuyoshi Nakada | |
| Fixed unmatched indent of the closing bracket for `:irb_current_working_workspace`, and adjusted following elements. | |||
| 2019-08-28 | Remove debug print [ci skip] | Kazuhiro NISHIYAMA | |
| 2019-08-28 | Remove jquery.js | aycabta | |
| 2019-08-28 | Version 6.2.0 | aycabta | |
| 2019-08-28 | Good bye jQuery | aycabta | |
| 2019-08-27 | Remove duplicated delegation | aycabta | |
| 2019-08-27 | Delegete an instance method to a class method correctly | aycabta | |
| 2019-08-27 | Save value to @ambiguous_width because of a accessor | aycabta | |
| 2019-08-27 | The "private" doesn't make sence for class methods and a constant | aycabta | |
| 2019-08-27 | Use preposing "private" to define methods | aycabta | |
| 2019-08-27 | Adjust method forwardings of Reline | aycabta | |
| 2019-08-27 | Remove .freeze. | manga_osyo | |
| 2019-08-27 | Fix `Reline::Windows`. | manga_osyo | |
| 2019-08-27 | Refactoring Reline. | manga_osyo | |
| 2019-08-27 | Remove test_mode in `lib/reline`. | manga_osyo | |
| 2019-08-27 | Refactoring Reline accessor. | manga_osyo | |
| 2019-08-27 | Handle binding.irb for frozen objects and BasicObjects using a delegate | Jeremy Evans | |
| Fixes Ruby Bug 13264 | |||
| 2019-08-27 | Move private call without arguments inside method | Jeremy Evans | |
| This code did not have the desired effect. I'm not sure if irb_binding is supposed to be private or not. If not, the private call can just be removed. | |||
| 2019-08-25 | lib/webrick.rb: use require_relative for webrick/utils.rb | Yusuke Endoh | |
| `require "webrick/utils.rb"` should load `lib/webrick/utils.rb`, but on some CI machines, it wrongly loads `test/webrick/utils.rb`, which caused circular require warning: https://rubyci.org/logs/rubyci.s3.amazonaws.com/ubuntu/ruby-master/log/20190825T093007Z.log.html.gz ``` /data/chkbuild/tmp/build/20190825T093007Z/ruby/lib/rubygems/core_ext/kernel_require.rb:61: warning: /data/chkbuild/tmp/build/20190825T093007Z/ruby/lib/rubygems/core_ext/kernel_require.rb:61: warning: loading in progress, circular require considered harmful - /data/chkbuild/tmp/build/20190825T093007Z/ruby/lib/webrick.rb ``` | |||
| 2019-08-22 | Always check multiline termination | aycabta | |
| 2019-08-21 | Add abs to Matrix (#2199) | Fernando Wolf Bona | |
| 2019-08-22 | IRB's multiline history is enable only when Reidline mode | aycabta | |
