Method: CommandBuilder#exec_functions

Defined in:
lib/clarity/commands/command_builder.rb

#exec_functionsObject



32
33
34
35
36
37
38
# File 'lib/clarity/commands/command_builder.rb', line 32

def exec_functions
  case File.extname(filename)
  when '.gz' then gzip_tools
  when '.bz2' then bzip_tools
  else default_tools
  end
end