ruby-changes:42542
From: nagachika <ko1@a...>
Date: Sun, 17 Apr 2016 03:23:43 +0900 (JST)
Subject: [ruby-changes:42542] nagachika:r54615 (trunk): * tool/redmine-backporter.rb: revisions are strings.
nagachika 2016-04-17 04:20:11 +0900 (Sun, 17 Apr 2016) New Revision: 54615 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54615 Log: * tool/redmine-backporter.rb: revisions are strings. Modified files: trunk/ChangeLog trunk/tool/redmine-backporter.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 54614) +++ ChangeLog (revision 54615) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Apr 17 04:18:56 2016 CHIKANAGA Tomoyuki <nagachika@r...> + + * tool/redmine-backporter.rb: revisions are strings. + Sat Apr 16 14:26:49 2016 Yuichiro Kaneko <yui-knk@r...> * ext/date/date_core.c : remove not used f_getlocal macro. Index: tool/redmine-backporter.rb =================================================================== --- tool/redmine-backporter.rb (revision 54614) +++ tool/redmine-backporter.rb (revision 54615) @@ -411,7 +411,7 @@ eom https://github.com/ruby/ruby/blob/trunk/tool/redmine-backporter.rb#L411 puts "ticket not selected" next end - rev = $1.to_i + rev = $1 uri = URI("#{REDMINE_BASE}/projects/ruby-trunk/repository/revisions/#{rev}/issues.json") Net::HTTP.start(uri.host, uri.port, http_options) do |http| res = http.post(uri.path, "issue_id=#@issue", -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/