joker1007/octogate

View on GitHub
lib/octogate/gh.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Octogate
  module GH
    autoload :Commit       , "octogate/gh/commit"
    autoload :Repository   , "octogate/gh/repository"
    autoload :User         , "octogate/gh/user"
    autoload :PullRequest  , "octogate/gh/pull_request"
    autoload :Issue        , "octogate/gh/issue"
    autoload :Label        , "octogate/gh/label"
    autoload :IssueComment , "octogate/gh/issue_comment"
    autoload :ReviewComment, "octogate/gh/review_comment"
  end
end