Sha256: c3ead783bc15ee0e130b4f893241bf917e199f01cd85659d771431c6101c47d6
Contents?: true
Size: 1.62 KB
Versions: 4
Compression:
Stored size: 1.62 KB
Contents
require 'fulmar/shell' module Fulmar module Infrastructure module Model module Transfer # Abstract class for all transfers, provides common methods class Base DEFAULT_CONFIG = { debug: false, user: '', password: '', remote_path: nil, local_path: '.', type: :rsync_with_versions }.freeze attr_accessor :config # @param [Fulmar::Domain::Service::ConfigurationService] config def initialize(config) @config = config @config.merge(DEFAULT_CONFIG) # Remove trailing slashes @config[:local_path] = @config[:local_path].chomp('/') if @config[:local_path] @config[:remote_path] = @config[:remote_path].chomp('/') if @config[:remote_path] @prepared = false end # Test the supplied config for required parameters def test_config required = %i[host remote_path local_path] required.each { |key| raise "Configuration is missing required setting '#{key}'." if @config.blank? } raise ':remote_path must be absolute' if @config[:remote_path][0, 1] != '/' end def prepare @local_shell = Fulmar::Shell.new @config[:local_path] @local_shell.strict = true @local_shell.debug = @config[:debug] @prepared = true end def publish # Placeholder for consistent api, currently only implemented in rsync_with_versions true end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems