class CircleCIReporter::VCS::Base
@abstract Subclass and override {#create_comment} to implement a custom VCS
client class.
Attributes
token[R]
Public Class Methods
new(token)
click to toggle source
@param token [String]
# File lib/circleci_reporter/vcs/base.rb, line 8 def initialize(token) @token = token end
Public Instance Methods
create_comment(body)
click to toggle source
@param body [String] @return [void]
# File lib/circleci_reporter/vcs/base.rb, line 14 def create_comment(body) raise NotImplementedError end