Sha256: 41597859391e40aac4aabcaecd8a5f182277d4738e0532f47047d82dc37ac6d6
Contents?: true
Size: 891 Bytes
Versions: 34
Compression:
Stored size: 891 Bytes
Contents
# frozen_string_literal: true require 'eac_ruby_utils/core_ext' module Avm module Scms module AutoCommit class FileResourceName require_sub __FILE__, include_modules: true enable_simple_cache common_constructor :source_root, :path do self.source_root = source_root.to_pathname self.path = path.to_pathname end def class_name file_format.file_resource_name(relative_path) end def commit_message r = class_name r += ': remove' unless path.file? "#{r}." end def relative_path path.expand_path.relative_path_from(source_root.expand_path) end private # @return [Avm::FileFormats::Base] def file_format_uncached ::Avm::Registry.file_formats.detect(path) end end end end end
Version data entries
34 entries across 34 versions & 2 rubygems