Rakefile in gaptool-server-0.6.0 vs Rakefile in gaptool-server-0.6.3
- old
+ new
@@ -28,10 +28,15 @@
end
task :sh => :shell
desc "Start the HTTP server"
task :server do
- exec "unicorn #{Shellwords.join(ARGV[1..-1])}"
+ exec "unicorn -p 3000 #{Shellwords.join(ARGV[1..-1])}"
+ end
+
+ desc "Tag git with VERSION"
+ task :tag do
+ exec "git tag v$(cat VERSION)"
end
end
task :help do
puts "Available tasks"