Method: Arver::CommandWrapper.create

Defined in:
lib/arver/command_wrapper.rb

.create(cmd, args = []) ⇒ Object



5
6
7
8
9
10
# File 'lib/arver/command_wrapper.rb', line 5

def self.create( cmd, args = [] )
  c = CommandWrapper.new
  c.command= cmd
  c.arguments_array= args
  c
end