rakefile.rb in mudbug-0.4.6.1 vs rakefile.rb in mudbug-0.4.6.2
- old
+ new
@@ -25,15 +25,11 @@
spec = Gem::Specification.new do |s|
# Static assignments
s.name = "mudbug"
s.summary = "A thin layer over rest-client that returns JSON objects"
s.description = <<EOF
- * GET, POST, PUT, and DELETE JSON payloads
- * Simple Accept headers with automatic q-score weighting
- * Understand and fall back to basic Content-types if application/json is not available
- * Fine-grained response handling using Mudbug#resource
- * A winning combination of guts, salad, sea legs, and torpor will propel our fair spaceship beyond the pale shadow of any doubt that the inxorable result of our redoubled efforts will counfound any chance at snatching defeat from the jars of whiskey.
+GET, POST, PUT, and DELETE JSON payloads. Easy Accept headers. Fine-grained response handling using Mudbug#resource. A winning combination of guts, salad, sea legs, and torpor will propel our fair spaceship beyond the pale shadow of unspoken doubt that the inxorable result of our redoubled efforts will counfound any chance at snatching defeat from the jars of whiskey.
EOF
s.authors = ["Rick Hull"]
s.email = "rick@cloudscaling.com"
s.homepage = "http://github.com/rickhull/mudbug"
s.licenses = ['LGPL']
@@ -91,9 +87,10 @@
task :bump => [:bump_patch]
task :tag do
tagname = "v#{version}"
sh "git tag -a #{tagname} -m 'auto-tagged #{tagname} by Rake'"
+ sh "git push origin --tags"
end
task :release => [:bump_build, :tag, :publish]
task :release_patch => [:bump_patch, :tag, :publish]
task :release_minor => [:bump_minor, :tag, :publish]