Method: Occson::Commands::Copy#initialize
- Defined in:
- lib/occson/commands/copy.rb
#initialize(source, destination, access_token, passphrase, force: false) ⇒ Copy
Builds an instance of the Copy command.
24 25 26 27 28 29 30 |
# File 'lib/occson/commands/copy.rb', line 24 def initialize(source, destination, access_token, passphrase, force: false) @source = source @destination = destination @access_token = access_token @passphrase = passphrase @force = force end |