]> source.dussan.org Git - redmine.git/commitdiff
Added a simple rake task to fetch changesets from the repositories:
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 16 Feb 2008 16:25:58 +0000 (16:25 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 16 Feb 2008 16:25:58 +0000 (16:25 +0000)
  rake redmine:fetch_changesets

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1155 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/tasks/fetch_changesets.rake [new file with mode: 0644]

diff --git a/lib/tasks/fetch_changesets.rake b/lib/tasks/fetch_changesets.rake
new file mode 100644 (file)
index 0000000..681032b
--- /dev/null
@@ -0,0 +1,24 @@
+# redMine - project management software\r
+# Copyright (C) 2006-2008  Jean-Philippe Lang\r
+#\r
+# This program is free software; you can redistribute it and/or\r
+# modify it under the terms of the GNU General Public License\r
+# as published by the Free Software Foundation; either version 2\r
+# of the License, or (at your option) any later version.\r
+# \r
+# This program is distributed in the hope that it will be useful,\r
+# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+# GNU General Public License for more details.\r
+# \r
+# You should have received a copy of the GNU General Public License\r
+# along with this program; if not, write to the Free Software\r
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\r
+\r
+desc 'Fetch changesets from the repositories'\r
+\r
+namespace :redmine do\r
+  task :fetch_changesets => :environment do\r
+    Repository.fetch_changesets\r
+  end\r
+end\r