Rakefile in redis-objects-1.0.1 vs Rakefile in redis-objects-1.1.0

- old
+ new

@@ -2,8 +2,12 @@ desc "run all the specs" task :test do sh "bacon spec/*_spec.rb" end - task :default => :test +desc "show changelog" +task :changelog do + latest = `git tag |tail -1`.chomp + system "git log --pretty=format:'* %s %b [%an]' #{latest}..HEAD" +end