Sha256: 93a0f0039eebe40133267e530ef513dd1795cf5c0792ec93d837667784d7f5fa
Contents?: true
Size: 604 Bytes
Versions: 52
Compression:
Stored size: 604 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/ukrdc" module Renalware module UKRDC module Incoming class Paths def incoming @incoming ||= begin working_path.join("incoming").tap { |path| FileUtils.mkdir_p(path) } end end def archive @archive ||= begin working_path.join("archive", "incoming").tap { |path| FileUtils.mkdir_p(path) } end end private def working_path Pathname(Renalware.config.ukrdc_working_path) end end end end end
Version data entries
52 entries across 52 versions & 1 rubygems