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



11
12
13
14
# File 'lib/sem_ver_components/output.rb', line 11

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