engine/lib/tasks/bushido.rake

16 lines
424 B
Ruby
Raw Normal View History

2011-03-21 09:40:37 +00:00
require 'bushido'
require 'jammit'
namespace :bushido do
desc "Prepare an app to run on the Bushido hosting platform, only called during the initial installation. Called just before booting the app."
task :install do
Jammit.package!
end
desc "Prepare an app to run on the Bushido hosting platform, called on every update. Called just before booting the app."
task :update do
Jammit.package!
end
end