mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* tool/redmine-backporter.rb: add given revision to current changests
on associating the revision to the related ticket. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e5472649f4
commit
c2b4b9bb47
2 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
Wed Mar 30 01:54:30 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* tool/redmine-backporter.rb: add given revision to current changests
|
||||||
|
on associating the revision to the related ticket.
|
||||||
|
|
||||||
|
Wed Mar 30 01:53:17 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* tool/merger.rb: update revision.h before merge.
|
||||||
|
|
||||||
Tue Mar 29 19:33:54 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
Tue Mar 29 19:33:54 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* addr2line.c: define toupper for its use. fix r54391.
|
* addr2line.c: define toupper for its use. fix r54391.
|
||||||
|
|
|
@ -406,7 +406,7 @@ eom
|
||||||
|
|
||||||
"rel" => proc{|args|
|
"rel" => proc{|args|
|
||||||
# this feature requires custom redmine which allows add_related_issue API
|
# this feature requires custom redmine which allows add_related_issue API
|
||||||
raise CommandSyntaxError unless /\A(\d+)\z/ =~ args
|
raise CommandSyntaxError unless /\Ar?(\d+)\z/ =~ args
|
||||||
unless @issue
|
unless @issue
|
||||||
puts "ticket not selected"
|
puts "ticket not selected"
|
||||||
next
|
next
|
||||||
|
@ -420,9 +420,10 @@ eom
|
||||||
res.value
|
res.value
|
||||||
rescue
|
rescue
|
||||||
$stderr.puts "deployed redmine doesn't have https://github.com/ruby/bugs.ruby-lang.org/commit/01fbba60d68cb916ddbccc8a8710e68c5217171d\nask naruse or hsbt"
|
$stderr.puts "deployed redmine doesn't have https://github.com/ruby/bugs.ruby-lang.org/commit/01fbba60d68cb916ddbccc8a8710e68c5217171d\nask naruse or hsbt"
|
||||||
return
|
raise
|
||||||
end
|
end
|
||||||
puts res.body
|
puts res.body
|
||||||
|
@changesets << rev
|
||||||
class << @changesets
|
class << @changesets
|
||||||
remove_method(:validated) rescue nil
|
remove_method(:validated) rescue nil
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue