Repository URL to install this package:
|
Version:
0.0.7 ▾
|
Then(/^the last commit should read "(.*?)"$/) do |msg|
commit_log = `cd #{$gem_home} && git log`
latest_commit_msg = commit_log.match(/\n\n\s+(.+)\n/) { |m| m[1] }
latest_commit_msg.should == msg
end