joker1007/octogate

View on GitHub
lib/octogate/gh/commit.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "octogate/gh/user"
require "octogate/gh/repository"

module Octogate
  class GH::Commit < Model
    coerce_key :user, GH::User
    coerce_key :repo, GH::Repository
    coerce_key :author, GH::User
    coerce_key :committer, GH::User
  end
end