Fixed db_schema & reordered rake tasks

This commit is contained in:
Dmitriy Zaporozhets 2012-04-21 12:45:43 +03:00
parent 08994f3f60
commit 7058258a2a
4 changed files with 16 additions and 12 deletions

View file

@ -0,0 +1,12 @@
namespace :gitlab do
namespace :app do
desc "GITLAB | Enable auto merge"
task :enable_automerge => :environment do
Gitlabhq::GitHost.system.new.configure do |git|
git.admin_all_repo
end
puts "Done!".green
end
end
end