Fujimoto Hisa
hisa****@fobj*****
Tue Mar 20 17:09:06 JST 2007
*NOTICE* I'll move the apple-unstable into the trunk in the svn repository soon! The process is like the following (The phase 1 already done): URL_BASE = 'https://rubycocoa.svn.sourceforge.net/svnroot/rubycocoa' URL_UNSTABLE ="#{URL_BASE}/branches/apple-unstable" URL_TRUNK ="#{URL_BASE}/trunk" URL_TRUNK_TMP ="#{URL_BASE}/tags/trunk-tmp-20070320" URL_TRUNK_BACKUP = "#{URL_BASE}/tags/backup-trunk-20070320" URL_UNSTABLE_BACKUP = "#{URL_BASE}/tags/backup-apple- unstable-20070320" # phase1 - copy command "svn copy", URL_UNSTABLE, URL_UNSTABLE_BACKUP command "svn copy", URL_TRUNK, URL_TRUNK_BACKUP # phase2 - move command "svn move", URL_TRUNK, URL_TRUNK_TMP command "svn move", URL_UNSTABLE, URL_TRUNK # phase3 - cleanup command "svn delete", URL_TRUNK_TMP thanks -- hisa e.g. def command(*args) cmd = args.join(' ') puts cmd `#{cmd}` if not $?.success? then puts $?.inspect raise "command failed!!" end end