Sha256: 2687c9783dcac3c3b28f682a929dc362d1e16d4eabe8e24e8ab849e538e8e082
Contents?: true
Size: 1.1 KB
Versions: 23
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true require 'eac_ruby_utils/core_ext' module Avm module Scms class Commit enable_abstract_methods # @return [Array<Pathname>] def changed_files raise_abstract_method __method__ end def deploy_to_env_path(_target_env, _target_path) raise_abstract_method __method__ end def id raise_abstract_method __method__ end # @param other [Avm::Scms::Commit] # @return [Avm::Scms::Commit] def merge_with(_other) raise_abstract_method __method__ end # @return [Array<Pathname>] def no_scm_changed_files changed_files.reject { |path| scm_file?(path) } end # @param new_message [String] def reword(_new_message) raise_abstract_method __method__ end # @return [Array<Pathname>] def scm_changed_files changed_files.select { |path| scm_file?(path) } end # @param path [Pathname] # @return [TrueClass,FalseClass] def scm_file?(_path) raise_abstract_method __method__ end end end end
Version data entries
23 entries across 23 versions & 2 rubygems