oleander/git-fame-rb

View on GitHub
lib/git_fame/author.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module GitFame
  class Author < Base
    attribute :name, Types::String
    attribute :email, Types::String
  end
end