Sha256: c1dc60dcffdb5f05d88138231540bd24dd1e495fa0e58b98290343f65a4b9d85
Contents?: true
Size: 1.52 KB
Versions: 1
Compression:
Stored size: 1.52 KB
Contents
require 'fulmar/shell' module Fulmar module Infrastructure module Service module Transfer # Abstract class for alle transfers, provides common methods class Base DEFAULT_CONFIG = { debug: false, user: '', password: '', remote_path: nil, local_path: '.', type: :rsync_with_versions } attr_accessor :config def initialize(config) @config = DEFAULT_CONFIG.merge(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 = [:host, :remote_path, :local_path] required.each { |key| fail "Configuration is missing required setting '#{key}'." if @config.blank? } fail ':remote_path must be absolute' if @config[:remote_path][0, 1] != '/' end def prepare @local_shell = Fulmar::Infrastructure::Service::ShellService.new @config[:local_path] @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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fulmar-1.4.0 | lib/fulmar/infrastructure/service/transfer/base.rb |