Class: Strongspace::Command::Upload

Inherits:
Base show all
Defined in:
lib/strongspace/commands/files.rb

Instance Attribute Summary

Attributes inherited from Base

#args

Instance Method Summary collapse

Methods inherited from Base

#initialize, #strongspace

Methods included from PluginInterface

#base_command, #command, included

Methods included from Helpers

#ask, #backup_space?, #bin_folder, #command_name, #computername, #confirm, #confirm_command, #create_pid_file, #credentials_file, #credentials_folder, #delete_pid_file, #display, #error, #format_date, #gui_ssh_key, home_directory, #home_directory, #kill_via_pidfile, #launchd_agents_folder, #logs_folder, #pid_file_path, #pid_from_pid_file, #pids_folder, #plugins_folder, #process_running?, #redisplay, running_on_a_mac?, #running_on_a_mac?, #running_on_windows?, running_on_windows?, #shell, #space_exist?, support_directory, #support_directory

Constructor Details

This class inherits a constructor from Strongspace::Command::Base

Instance Method Details

#indexObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/strongspace/commands/files.rb', line 15

def index

  if args.length != 2
    error "usage: strongspace upload <local file> </destination/path>"
  end

  if not File.exist?(args.first)
    error "#{args.first} does not exist"
  end

  if not File.readable?(args.first)
    error "You don't have permissions to read #{args.first}"
  end

  display "Uploading #{Pathname.new(args.first).basename} to #{args[1]}"
  file = File.new(args.first, 'rb')
  strongspace.upload(file, args[1])
  display "Succesfully uploaded #{Pathname.new(args.first).basename}"
end