Sha256: 43fc43fc0bbf227c90e1ed8b66010d969e49a8fdc227ecebd70b1ab6d9c68bbf
Contents?: true
Size: 953 Bytes
Versions: 122
Compression:
Stored size: 953 Bytes
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 # @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
122 entries across 122 versions & 3 rubygems