public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
Automate tagging
macournoyer (author)
Fri Jan 25 11:24:14 -0800 2008
commit  47154115483833730a6317cb3179f1415e0b7a19
tree    961f88ce1167b026fd36c44760c66167a768ac91
parent  4017a4dc97eac8f12c19e4a36e56357ba9857c86
...
42
43
44
45
 
 
 
 
46
 
 
 
47
48
49
...
42
43
44
 
45
46
47
48
49
50
51
52
53
54
55
0
@@ -42,8 +42,14 @@
0
 task :tag_warn do
0
   puts "*" * 40
0
   puts "Don't forget to tag the release:"
0
- puts " git tag -a v#{Thin::VERSION::STRING}"
0
+ puts
0
+ puts " git tag -a v#{Thin::VERSION::STRING} -m 'Tagging #{Thin::SERVER}'"
0
+ puts
0
+ puts "or run rake tag"
0
   puts "*" * 40
0
+end
0
+task :tag do
0
+ sh "git tag -a v#{Thin::VERSION::STRING} -m 'Tagging #{Thin::SERVER}'"
0
 end
0
 task :gem => :tag_warn
0
 

Comments

    No one has commented yet.