summaryrefslogtreecommitdiffstats
path: root/extra/svn/reposman.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-05-17 13:32:08 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-05-17 13:32:08 +0000
commit574511fcedee6d4499770271384b5b94c7166ead (patch)
treec7f3972f5012af6b21c13ae057613024b51529d2 /extra/svn/reposman.rb
parent5b8dfe03723004cfada4b870f50af94203f402e7 (diff)
downloadredmine-574511fcedee6d4499770271384b5b94c7166ead.tar.gz
redmine-574511fcedee6d4499770271384b5b94c7166ead.zip
remove trailing white-spaces and empty lines from extra/svn/reposman.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5825 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'extra/svn/reposman.rb')
-rwxr-xr-xextra/svn/reposman.rb12
1 files changed, 4 insertions, 8 deletions
diff --git a/extra/svn/reposman.rb b/extra/svn/reposman.rb
index 36710ac77..cd4755045 100755
--- a/extra/svn/reposman.rb
+++ b/extra/svn/reposman.rb
@@ -7,7 +7,7 @@
# == Usage
#
# reposman [OPTIONS...] -s [DIR] -r [HOST]
-#
+#
# Examples:
# reposman --svn-dir=/var/svn --redmine-host=redmine.example.net --scm subversion
# reposman -s /var/git -r redmine.example.net -u http://svn.example.net --scm git
@@ -57,7 +57,7 @@
# -q, --quiet no log
#
# == References
-#
+#
# You can find more information on the redmine's wiki : http://www.redmine.org/wiki/redmine/HowTos
@@ -225,9 +225,9 @@ end
def owner_name(file)
mswin? ?
$svn_owner :
- Etc.getpwuid( File.stat(file).uid ).name
+ Etc.getpwuid( File.stat(file).uid ).name
end
-
+
def mswin?
(RUBY_PLATFORM =~ /(:?mswin|mingw)/) || (RUBY_PLATFORM == 'java' && (ENV['OS'] || ENV['os']) =~ /windows/i)
end
@@ -246,7 +246,6 @@ projects.each do |project|
repos_path = File.join($repos_base, project.identifier).gsub(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR)
if File.directory?(repos_path)
-
# we must verify that repository has the good owner and the good
# rights before leaving
other_read = other_read_right?(repos_path)
@@ -304,9 +303,6 @@ projects.each do |project|
log("\trepository #{repos_path} not registered in Redmine: #{e.message}");
end
end
-
log("\trepository #{repos_path} created");
end
-
end
- \ No newline at end of file