Skip to content

manicmaniac/mailmap

Repository files navigation

mailmap

Test Maintainability Test Coverage Gem Version

Pure Ruby implementation of Git mailmap.

Installation

Add this line to your application's Gemfile:

gem 'mailmap'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install mailmap

Usage

require 'mailmap'

# Load .mailmap file
mailmap = Mailmap::Map.load('.mailmap')

# Parse string
mailmap = Mailmap::Map.parse('Proper Name <[email protected]> <[email protected]>')

# Equivalent to git check-mailmap 'Commit Name' '[email protected]'
mailmap.resolve('Commit Name', '[email protected]') # => ['Proper Name', '[email protected]']

# Equivalent to git check-mailmap '[email protected]'
mailmap.resolve(nil, '[email protected]') # => [nil, '[email protected]']

# Similar to `Map#resolve` but returns nil if not found
mailmap.lookup('Nonexistent Name', '[email protected]') #=> nil

See API reference for more information.

Development

After checking out the repo, run bundle install to install dependencies. Then, run rake test to run the tests.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/manicmaniac/mailmap.

License

The gem is available as open source under the terms of the MIT License.