LastCommit
Simple utility class to get last commit info from git repository.
Installation
Add this line to your application's Gemfile:
gem "last_commit"
And then execute:
$ bundle
Or install it by yourself:
$ gem install last_commit
Usage
require "last_commit"
last_commit = LastCommit.new("#{ENV["HOME"]}/git/repo/path", "master")
last_commit.author # "Tomek WaĆkuski"
last_commit.message # "Initial commit"
last_commit.sha # "08feadfc6075dbeb696aa61e9d21383b2a6a0f0e"
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request