Class: SemVerComponents::Output

Inherits:
Object
  • Object
show all
Defined in:
lib/sem_ver_components/output.rb

Overview

Base class for all output plugins

Instance Method Summary collapse

Constructor Details

#initialize(local_git, git_hosting) ⇒ Output

Constructor

Parameters:

  • local_git (LocalGit) —

    The git repository

  • git_hosting (GitHosting) —

    The git hosting to be used for URLs



8
9
10
11
# File 'lib/sem_ver_components/output.rb', line 8

def initialize(local_git, git_hosting)
  @local_git = local_git
  @git_hosting = git_hosting
end