* Improve error handling * Add tests for Github::Client * Add GithubIssue validation * Refactor GithubIssue and fix bug with pull requests * Improve tests * Fix PR API URL generation * Improve logic and get rid of the issue fragment * Fix disappeared avatar * Improve rendering * Activate client side caching using Redis * Remove unnecessary file * Add RemoveGithubIssues data update script * Fix comma * Forgot to disable the approvals verify text * Apply PR feedback
15 lines
200 B
Ruby
15 lines
200 B
Ruby
module Github
|
|
module Errors
|
|
class Error < StandardError
|
|
end
|
|
|
|
class ClientError < Error
|
|
end
|
|
|
|
class ServerError < Error
|
|
end
|
|
|
|
class NotFound < ClientError
|
|
end
|
|
end
|
|
end
|