Commit cd7a733dfa975b74b8b5fa8f031ccc25ee24924b
- Date: Thu May 08 16:30:20 +0000 2008
- Committer: vann (vann@innerfusion.net)
- Author: vann (vann@innerfusion.net)
- Commit SHA1: cd7a733dfa975b74b8b5fa8f031ccc25ee24924b
- Tree SHA1: ee88d261b713ad082a32ed8216ce970587c16a97
added rakefile for automated tasks
Commit diff
| |   |
| 1 | namespace :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 |
| 10 | end |
| toggle raw diff |
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,10 @@
+namespace :silverstreak do
+
+ desc 'Generates the public dir and copies over the template files'
+ task :install do
+ system("mkdir ../public")
+ system("cp -r templates/* ../public")
+ puts "=="
+ puts "Silverstreak installed successfully!"
+ end
+end |