aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Removed Synchronizer from the ruby repository.Hiroshi SHIBATA2019-09-202-355/+0
|
* Removed Shell from the ruby repository.Hiroshi SHIBATA2019-09-209-1965/+0
|
* Removed Scanf from the ruby repository.Hiroshi SHIBATA2019-09-202-800/+0
|
* Removed CMath from the ruby repository.Hiroshi SHIBATA2019-09-202-458/+0
|
* Added link_command for C++Nobuyoshi Nakada2019-09-191-0/+10
|
* Separate @have_devel for C++Nobuyoshi Nakada2019-09-191-0/+8
|
* Look up the language moduleNobuyoshi Nakada2019-09-191-1/+11
| | | | | | Look up language module with `MakeMakefile.[]`, insted of a accessing constant under that module directly, to get rid of expose the constant to the toplevel inadvertently.
* Removed MakeMakefile::CNobuyoshi Nakada2019-09-181-2/+0
| | | | It is exposed to the topleven namespace via included MakeMakefile.
* Removed a debug print [ci skip]Nobuyoshi Nakada2019-09-181-2/+0
|
* [EXPERIMENTAL] MakeMakefile::CXX for C++Nobuyoshi Nakada2019-09-181-7/+40
|
* [bundler/bundler] Merge #7340Bundlerbot2019-09-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | 7340: Fix bundle clean issue r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that `bundle clean` is crashing under some conditions. ### What was your diagnosis of the problem? My diagnosis was that sometimes (when the bundle includes git sourced gems with extensions), it assumes that some paths exist, but they don't. ### What is your fix for the problem, implemented in this PR? My fix is to ignore those paths. ### Why did you choose this fix out of the possible options? I chose this fix because it fixes the issue. Fixes #7338. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net> (cherry picked from commit b007fde67c77c1f15f13b97eda186644c2a2be04) https://github.com/bundler/bundler/commit/3766053507
* [bundler/bundler] Fix remembered flag deprecation messageDavid Rodríguez2019-09-181-1/+1
| | | | | | It was suggested a deprecated command as a fix. https://github.com/bundler/bundler/commit/e330a9a34f
* [bundler/bundler] Version 2.1.0.pre.2David Rodríguez2019-09-181-1/+1
| | | | https://github.com/bundler/bundler/commit/6e9774b377
* [bundler/bundler] Revert "Add all platforms to lockfile by default"David Rodríguez2019-09-182-9/+1
| | | | | | This reverts commit 3dc509e645abb497e4dc92a7c42be471ff87db0b. https://github.com/bundler/bundler/commit/b5766564fb
* [bundler/bundler] Revert "Remove now meaningless warning"David Rodríguez2019-09-181-1/+11
| | | | | | This reverts commit 00b095b98fe4bd44950beaf3bc9f1d91eac7b69e. https://github.com/bundler/bundler/commit/e93bce3b20
* [bundler/bundler] Revert "Remove now meaningless setting"David Rodríguez2019-09-182-1/+2
| | | | | | This reverts commit 52c5a0eedec34b5d86464b3cf135dc2002486f1d. https://github.com/bundler/bundler/commit/b4cc36deb9
* [bundler/bundler] Revert "Remove now unused method"David Rodríguez2019-09-181-0/+4
| | | | | | This reverts commit 3a2d2f025081755bdb38af660897e7b2f749a33a. https://github.com/bundler/bundler/commit/13cef81582
* [bundler/bundler] Fix comments and messages to refer to https urlTakayuki Nakata2019-09-187-10/+10
| | | | https://github.com/bundler/bundler/commit/a86b49f1b9
* [bundler/bundler] Fix --path option descriptionsDavid Rodríguez2019-09-181-2/+2
| | | | | | To not mention that the flag is remembered when it's not. https://github.com/bundler/bundler/commit/82f0b95854
* [bundler/bundler] Deprecate `--path` flag to `bundle check`David Rodríguez2019-09-181-0/+2
| | | | https://github.com/bundler/bundler/commit/0a0e7cf5ec
* Undefine DSUSP keyNobuyoshi Nakada2019-09-171-1/+5
| | | | | Enable `Ctrl+Y`, which is bound with it by default on BSD-like systems, for editing.
* Fix previous history in vi_insert modeAdam Cammack2019-09-171-1/+1
|
* Fix history navigation in vi_insert modeAdam Cammack2019-09-171-1/+1
|
* Folded files in gemspecNobuyoshi Nakada2019-09-165-11/+389
|
* The stdlib readline should raise Interrupt when pressing C-caycabta2019-09-141-2/+1
|
* Revert "Use IO#getch to read one char in raw mode"aycabta2019-09-141-3/+8
| | | | This reverts commit 805b0a481132938638dbd32830cf5dca3910efb1.
* Revert "Use IO#getbyte"aycabta2019-09-141-1/+1
| | | | This reverts commit 685f12bbca50ff9b7a16b3016b3b8b3f2ac8b796.
* Revert "Support multibyte input"aycabta2019-09-141-2/+1
| | | | This reverts commit 6d9e54816f828983bcf383ce6fce287bd3ca05b9.
* Support multibyte inputNobuyoshi Nakada2019-09-101-1/+2
|
* Use IO#getbyteNobuyoshi Nakada2019-09-101-1/+1
|
* Use IO#getch to read one char in raw modeNobuyoshi Nakada2019-09-101-8/+3
|
* Reline: Fix wrong variable nameLars Kanis2019-09-091-2/+2
| | | | This raised a NameError before.
* Behave ESC key correctly when vi command modeaycabta2019-09-082-1/+3
|
* Remove .document and .gitignore from file list of rdoc.gemspecaycabta2019-09-081-1/+1
|
* Fix Tempfile.open to correctly pass keywords to Tempfile.newJeremy Evans2019-09-061-2/+2
|
* Fix SortedSet subclasses that override initializeJeremy Evans2019-09-061-1/+2
| | | | | | | | | | | | | The first time SortedSet#initialize is called, it overwrites itself, then recalls #initialize, which results in calling the subclass's initialize, not the current initialize. Just inline the default initialize behavior to avoid this issue. No test for this as it can only be triggered the very first time that SortedSet#initialize is called. Fixes [Bug #15830]
* [rubygems/rubygems] Bump rubocop to 0.74.0 and fix new offensesDavid Rodríguez2019-09-057-16/+16
| | | | https://github.com/rubygems/rubygems/commit/d4fc383497
* [rubygems/rubygems] Minor fixAlexander Pakulov2019-09-051-1/+1
| | | | https://github.com/rubygems/rubygems/commit/95c1f4e179
* [rubygems/rubygems] Add missing parenthesesbronzdoc2019-09-051-1/+1
| | | | https://github.com/rubygems/rubygems/commit/f5972338e0
* [rubygems/rubygems] Remove unnecessary gem_name methodbronzdoc2019-09-051-5/+2
| | | | https://github.com/rubygems/rubygems/commit/d1bb122651
* [rubygems/rubygems] Error out if there are multiple gemspecs and no gemspec ↵bronzdoc2019-09-051-3/+10
| | | | | | is specified https://github.com/rubygems/rubygems/commit/547947bbf0
* [rubygems/rubygems] Build the first gemspec we found if no gemspec is specifiedbronzdoc2019-09-051-1/+9
| | | | https://github.com/rubygems/rubygems/commit/ab186266b7
* [rubygems/rubygems] Improve gemspec assignment and error messagebronzdoc2019-09-051-4/+2
| | | | https://github.com/rubygems/rubygems/commit/dc70c5a192
* [rubygems/rubygems] Make passing a gem name to be optionalbronzdoc2019-09-051-1/+1
| | | | https://github.com/rubygems/rubygems/commit/4ba4ffebbe
* [rubygems/rubygems] Move build gem logic to its own methodbronzdoc2019-09-051-7/+9
| | | | https://github.com/rubygems/rubygems/commit/a16eacd650
* [rubygems/rubygems] Don't fail when `uninstall --all` with default gemDavid Rodríguez2019-09-051-8/+5
| | | | | | | 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
* [rubygems/rubygems] Use IAM role to extract security-credentials for EC2 ↵Alexander Pakulov2019-09-051-5/+13
| | | | | | instance https://github.com/rubygems/rubygems/commit/9a401646e1
* [rubygems/rubygems] Move empty check earlierDavid Rodríguez2019-09-051-3/+5
| | | | https://github.com/rubygems/rubygems/commit/fc224e9717
* Add Net::FTP#features and Net::FTP#optionShugo Maeda2019-09-021-0/+35
| | | | | Patch by darkphnx (Dan Wentworth) . Thanks! [Feature #15964]
* Treat Japanese IME on/off code correctlyaycabta2019-09-021-22/+24
|