remove useless rake task

This commit is contained in:
Matt K. Fu 2013-04-10 17:58:31 +08:00
parent 38d5a193e0
commit 2416030adc
1 changed files with 23 additions and 10 deletions

View File

@ -62,15 +62,28 @@ namespace :desktop do
temp_file
end
task :destroy_build_desktop => :environment do
Desktop.all.destroy_all
u = User.all
u.each do |us|
Thread.new {
us.initialize_desktop.save!
puts "Desktop created for " + us.email.to_s
}.join
end
end
namespace :tiles do
task :destroy_build_tiles => :environment do
Tile.destroy_all
secs = Section.all
dws = DesktopWidget.all
secs.each do |sec,x|
grp = sec.groups.first
t = Tile.new(data_category: "app", data_content: "wikibooks", position: 1, shape: "w1 h1", title: "WikiBooks")
grp.tiles+=[t]
t = Tile.new(data_category: "app", data_content: "envocab", position: 2, shape: "w1 h1", title: "English Vocabulary")
grp.tiles+=[t]
@i = 3
dws.each do |dw|
t = Tile.new(data_category: "widget", position: @i,desktop_widget_id: dw.id)
@i = @i + 1
grp.tiles+=[t]
end
grp.save!
puts "Section " + (x || "NilString") + " done!"
end
end
end
end