Rakefile in soywiki-0.1.9 vs Rakefile in soywiki-0.2.0
- old
+ new
@@ -9,11 +9,11 @@
Bundler::GemHelper.install_tasks
desc "release and build and push new website"
-task :push => [:release, :build_webpage]
+task :push => [:release, :web]
desc "Bumps version number up one and git commits"
task :bump do
basefile = "lib/soywiki.rb"
file = File.read(basefile)
@@ -28,10 +28,10 @@
`git commit -am 'Bump'`
end
desc "build and push website"
task :web => :build_webpage do
- "Building and pushing website"
+ puts "Building and pushing website"
`scp website/soywiki.html zoe2@instantwatcher.com:~/danielchoi.com/public/software/`
end
desc "build website locally"
task :weblocal => :build_webpage do