Class: CopyBot::Steps::ImportRemoteDbToLocalDb

Inherits:
BaseStep
  • Object
show all
Defined in:
lib/copy_bot/steps/import_remote_db_to_local_db.rb

Instance Attribute Summary

Attributes inherited from BaseStep

#message, #success

Instance Method Summary collapse

Methods inherited from BaseStep

#initialize

Constructor Details

This class inherits a constructor from CopyBot::Steps::BaseStep

Instance Method Details

#runString

Returns:

  • (String)


5
6
7
8
9
10
# File 'lib/copy_bot/steps/import_remote_db_to_local_db.rb', line 5

def run
  return @message = 'Missing remote DB dump file' unless source_file_valid?

  @success = CopyBot::ShellCommand.new(command).execute
  @message = @success ? 'Imported remote DB to local DB.' : 'Remote DB to local DB import failed.'
end