Sha256: a24ba2afc0b41249c10149c7fc8af1dfe4e8e6eea69bddb671424f7836861d80
Contents?: true
Size: 515 Bytes
Versions: 8
Compression:
Stored size: 515 Bytes
Contents
# frozen_string_literal: true require 'eac_ruby_utils/core_ext' module Avm module Scms class Base enable_abstract_methods abstract_methods :update, :valid? common_constructor :path do self.path = path.to_pathname end # @return [Avm::Scms::Commit,NilClass] def commit_if_change(_message = nil) raise_abstract_method __method__ end def name self.class.name.demodulize end def to_s name end end end end
Version data entries
8 entries across 8 versions & 2 rubygems