aboutsummaryrefslogtreecommitdiffstats
path: root/tool
Commit message (Collapse)AuthorAgeFilesLines
* Nil cannot and should not convert to a stringNAKAMURA Usaku2019-05-031-1/+1
|
* Fix a typoKazuhiro NISHIYAMA2019-05-021-1/+1
|
* No last commit when up-to-dateNobuyoshi Nakada2019-05-011-1/+3
| | | | | | Get the last commit title from the upstream to the head, so that no `last_commit` line will be shown when the branch is up to date with the upstream.
* Change Accept-Encoding from `*` to `identity`Kazuhiro NISHIYAMA2019-04-301-1/+1
| | | | | | When `Accept-Encoding` is `*`, http://www.unicode.org/Public/12.1.0/ucd/ returns gzipped content now. So set `identity`.
* Use redirect keyword arguments instead of ">"NAKAMURA Usaku2019-04-302-2/+2
|
* Use array mode of `system` instead of `shellescape`Nobuyoshi Nakada2019-04-301-2/+3
| | | | `&.` is not available in ruby 2.0.
* String#[] with index to extract matched substring safelyNobuyoshi Nakada2019-04-301-1/+1
|
* Must use IO::NULL instead of platform dependent filenameNAKAMURA Usaku2019-04-301-1/+1
|
* **Must** use IO::NULL for null deviceNAKAMURA Usaku2019-04-301-1/+1
|
* `from` is not nil but `""` on shallow clone [ci skip]Kazuhiro NISHIYAMA2019-04-301-1/+1
|
* Add Reline as a fallback library for Readlineaycabta2019-04-301-0/+7
| | | | | | | | | | | | | * lib/reine.rb, lib/reline/*: Reline is a readline stdlib compatible library. * lib/readline.rb: Readline uses a fallback to Reline when ext/readline doesn't exist. * tool/sync_default_gems.rb: add ruby/reline as a default gem. * appveyor.yml: add "set RELINE_TEST_ENCODING=Windows-31J" for test suit of Reline, and add "--exclude readline" to "nmake test-all" on Visual Studio builds because of strange behavior. * spec/ruby/library/readline/spec_helper.rb: skip Reline as with RbReadline.
* Use 10 chars as RUBY_REVISION in snapshot tooKazuhiro NISHIYAMA2019-04-291-1/+1
|
* Fully support Git in tool/merger.rbTakashi Kokubun2019-04-291-21/+46
| | | | as both backport source repository and backport destination repository.
* * remove trailing spaces.git2019-04-291-2/+2
|
* tool/merger.rb: Avoid making too-deep indentationTakashi Kokubun2019-04-291-156/+156
| | | | | | | | because it's hard to understand what's going on when indentation depth is too deep. Sorry for polluting git blame, but most of the Merger's lines are updated recently anyway.
* Support `tool/merger.rb removetag` under GitTakashi Kokubun2019-04-291-25/+24
| | | | repository.
* Support `tool/merger.rb tag` under Git repositoryTakashi Kokubun2019-04-291-44/+56
|
* Support `tool/merger.rb up` under Git repositoryTakashi Kokubun2019-04-281-53/+69
| | | | | updating indentation (and slightly changing styles) for areas already supporting Git.
* Fix wrong svn optionsTakashi Kokubun2019-04-281-2/+2
| | | | | | for SVN as a backport source. This was a mistake in de5378233b2ff5434f024ac66285e699794a321d...
* Stop using global variable for reposTakashi Kokubun2019-04-281-5/+6
| | | | to avoid having impact from other places.
* Now tool/merger.rb may use Git [ci skip]Takashi Kokubun2019-04-281-1/+1
|
* Drop SVN-specific method from Merger moduleTakashi Kokubun2019-04-281-7/+4
| | | | to clarify it's not needed for Git support.
* Make Merger.version private to the moduleTakashi Kokubun2019-04-281-30/+32
| | | | because it's not used outside the Module.
* Define merger.rb's methods under Merger namespaceTakashi Kokubun2019-04-281-15/+18
| | | | | | | so that we do not monkey-patch all classes by defining methods on top-level (Object class). Not arranging indentation in it to keep `git blame` for now.
* Support git as redmine-backporter's done destinationTakashi Kokubun2019-04-281-3/+16
|
* Make the range to export as changelog optionalNobuyoshi Nakada2019-04-282-8/+8
| | | | | | | * `from` is defaulted to the beginning of the branch inclusively, otherwise the given revision is excluded as the previous. * `to` is defaulted to the head.
* Added VCS::SVN#branch_beginningNobuyoshi Nakada2019-04-282-2/+11
|
* Search the beginning revision more strictly a bitNobuyoshi Nakada2019-04-281-1/+1
|
* Removed `--reverse` optionNobuyoshi Nakada2019-04-281-1/+1
| | | | It is nonsense with `-n1` option.
* Chomp a newline from the branch nameNobuyoshi Nakada2019-04-281-0/+1
|
* Shorten git revision name without "r" prefix in snapshotNobuyoshi Nakada2019-04-282-4/+21
|
* Reduce matz's work, let git do it insteadNobuyoshi Nakada2019-04-282-11/+10
|
* Support git-log format ChangeLogNobuyoshi Nakada2019-04-271-3/+6
|
* Separate format_changelogNobuyoshi Nakada2019-04-271-24/+34
| | | | | | VCS::GITSVN#format_changelog generates previous format, similar to svn-log, and VCS::GIT#format_changelog stores just git-log as-is for now.
* Override log format to parse for ChangeLogNobuyoshi Nakada2019-04-271-1/+1
|
* Include the beginning commit in ChangeLogNobuyoshi Nakada2019-04-271-1/+1
|
* Retry downloads more for unicode outageTakashi Kokubun2019-04-271-1/+1
| | | | like https://ci.appveyor.com/project/ruby/ruby/builds/24142523/job/v6aq4srj7c3hgt86
* tool/sync_default_gems.rb: Check prerequisitesTakashi Kokubun2019-04-261-0/+3
|
* Revert "IRB is improved with Reline and RDoc, take 2"Nobuyoshi Nakada2019-04-231-7/+0
| | | | | Accidentally merged when 89271d4a3733bc5e70e9c56b4bd12f277e699c42 "Adjusted indents".
* IRB is improved with Reline and RDoc, take 2aycabta2019-04-231-0/+7
|
* Add VCS::GIT#commitNobuyoshi Nakada2019-04-231-0/+9
|
* Split git-svn dependent methodsNobuyoshi Nakada2019-04-231-0/+2
|
* [ci skip] grammers in commentsUrabe, Shyouhei2019-04-231-9/+9
|
* Omit last_commit=RUBY_LAST_COMMIT_TITLE without local commitsKazuhiro NISHIYAMA2019-04-221-1/+1
|
* Migrate RUBY_VERSION/RUBY_DESCRIPTION to GitTakashi Kokubun2019-04-222-17/+6
| | | | | | | | | | | | | | from Subversion. This behavior is tentative and not discussed well. The point of discussion will be just the length of commit hash, and I thought we should include this kind of change in 2.7.0-preview1 release even before the length is fixed yet. Let's discuss that afterwards and fix it later as needed. Naruse suggested that length=10 is very unlikely to cause conflict, and thus it's used by email notification and rubyci now. This behavior is in favor of that for now.
* tool/redmine-backporter.rb: Git support in backport/relk0kubun2019-04-211-6/+16
| | | | | | close https://github.com/ruby/ruby/pull/2138 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* tool/redmine-backporter.rb: Remove unused methodsk0kubun2019-04-211-44/+0
| | | | | | They seem to have never been used from the beginning (r45081). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Drop tool/generate-backport-changelog.rbk0kubun2019-04-211-99/+0
| | | | | | because we're not writing ChangeLog since ruby_2_4. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* tool/merger.rb: Guard match failure properlyk0kubun2019-04-211-1/+1
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* tool/merger.rb: Support fetching patch from cgitk0kubun2019-04-211-11/+29
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67693 b2dd03c8-39d4-4d8f-98ff-823fe69b080e