Consolidation of work on slicefiying application with original app
[merb_mart.git] / lib / merb_mart / slicetasks.rb
blobaa1fd9645d16529bcf01290a54fdb6891ac5a3ed
1 namespace :slices do
2   namespace :merb_mart do 
3     
4     # add your own merb_mart tasks here
5     
6     # implement this to test for structural/code dependencies
7     # like certain directories or availability of other files
8     desc "Test for any dependencies"
9     task :preflight do
10     end
11     
12     # implement this to perform any database related setup steps
13     desc "Migrate the database"
14     task :migrate do
15     end
16     
17   end
18 end