orbit-basic/lib/tasks/site.rake

32 lines
1.1 KiB
Ruby
Raw Normal View History

2011-08-18 05:43:33 +00:00
# encoding: utf-8
namespace :site do
task :build => :environment do
2013-02-05 10:26:45 +00:00
Site.destroy_all
Purchase.destroy_all
2011-08-18 05:43:33 +00:00
Site.create( :school => 'RulingDigital University', :department => 'Computer Science', :valid_locales => [ 'en', 'zh_tw' ], :in_use_locales => [ 'zh_tw', 'en' ])
User.create!(:email=>'chris@rulingcom.com',:admin=>true,:user_id=>'chris',:password=>'password')
put "Run ensureIndex on chunks before you upload something. If You start DB from nothing."
puts 'Please upload design package and run rake site:necessary_data'
2011-08-18 05:43:33 +00:00
end
task :necessary_data => :environment do
site = Site.first
site.title = 'RulingOrbit Demo Site'
site.save
# home_trans = I18nVariable.create!( :document_class => 'Home', :key => 'home', :en => 'Homepage', :zh_tw => '首頁')
design = Design.first
theme = design.themes.first
home = Page.new( :design_id => design.id, :name => 'home', :is_published => true, :theme_id => theme.id )
home.title_translations = {"zh_tw"=>"首頁", "en"=>"Home"}
home.save
end
2011-08-18 05:43:33 +00:00
end