class CircleCI::CoverageReporter::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/coverage_reporter/vcs/base.rb, line 7
def initialize(token)
  @token = token
end

Public Instance Methods

create_comment(body) click to toggle source

@param body [String] @return [void]

# File lib/circleci/coverage_reporter/vcs/base.rb, line 13
def create_comment(body) # rubocop:disable Lint/UnusedMethodArgument
  raise NotImplementedError
end