Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomekw/last_commit
Simple utility class to get last commit info from git repository.
https://github.com/tomekw/last_commit
Last synced: 4 days ago
JSON representation
Simple utility class to get last commit info from git repository.
- Host: GitHub
- URL: https://github.com/tomekw/last_commit
- Owner: tomekw
- License: mit
- Created: 2013-08-04T12:09:19.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-08T17:36:45.000Z (over 11 years ago)
- Last Synced: 2024-10-03T10:37:03.896Z (about 1 month ago)
- Language: Ruby
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# LastCommit
Simple utility class to get last commit info from git repository.
## Installation
Add this line to your application's Gemfile:
``` ruby
gem "last_commit"
```And then execute:
``` sh
$ bundle
```Or install it by yourself:
``` sh
$ gem install last_commit
```## Usage
``` ruby
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
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request