Class: SemVerComponents::Output
- Inherits:
-
Object
- Object
- SemVerComponents::Output
- Defined in:
- lib/sem_ver_components/output.rb
Overview
Base class for all output plugins
Direct Known Subclasses
SemVerComponents::Outputs::Info, SemVerComponents::Outputs::SemanticReleaseAnalyze, SemVerComponents::Outputs::SemanticReleaseGenerateNotes
Instance Method Summary collapse
-
#initialize(local_git, git_hosting) ⇒ Output
constructor
Constructor.
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 |