Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomekw/developer_info
Simple utility class to get developer info from git config.
https://github.com/tomekw/developer_info
Last synced: 4 days ago
JSON representation
Simple utility class to get developer info from git config.
- Host: GitHub
- URL: https://github.com/tomekw/developer_info
- Owner: tomekw
- License: mit
- Created: 2013-01-27T14:32:38.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-04T20:03:02.000Z (over 11 years ago)
- Last Synced: 2024-10-18T11:29:57.162Z (26 days ago)
- Language: Ruby
- Size: 111 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# DeveloperInfo
[![Build Status](https://travis-ci.org/tomekw/developer_info.png)](https://travis-ci.org/tomekw/developer_info)
Simple utility class to get developer info from git config.
## Installation
Add this line to your application's Gemfile:
``` ruby
gem "developer_info"
```And then execute:
``` sh
$ bundle
```Or install it yourself by:
``` sh
$ gem install developer_info
```## Usage
``` ruby
require "developer_info"developer_info = DeveloperInfo.new("#{ENV["HOME"]}/git/repo/path")
developer_info.editor # "mvim"
developer_info.email # "[email protected]"
developer_info.name # "John Doe"
developer_info.to_s # "John Doe ([email protected])"
```## 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