Commit cd7a733dfa975b74b8b5fa8f031ccc25ee24924b

added rakefile for automated tasks

Commit diff

Rakefile

 
1namespace :silverstreak do
2
3 desc 'Generates the public dir and copies over the template files'
4 task :install do
5 system("mkdir ../public")
6 system("cp -r templates/* ../public")
7 puts "=="
8 puts "Silverstreak installed successfully!"
9 end
10end
toggle raw diff