Sha256: 74e705fc5916b2738a032d4ea2a8680d2e518a2991298b96ae50ae53748c40b4
Contents?: true
Size: 460 Bytes
Versions: 11
Compression:
Stored size: 460 Bytes
Contents
# frozen_string_literal: true module Git module Lint module Commits module Hosts # Provides local feature branch information. class Local include Git::Lint::Import[:git] def call = git.commits "#{branch_default}..#{branch_name}" private def branch_default = git.branch_default.value_or nil def branch_name = git.branch_name.value_or nil end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems