Method: Aka.import

Defined in:
lib/aka/helpers.rb

.import(the_name) ⇒ Object



7
8
9
10
11
12
13
14
15
# File 'lib/aka/helpers.rb', line 7

def self.import(the_name)
  if the_name == ""
    array = get_all_aliases_from_proj_aka
    repeated_system_call(array)
  else
    array = get_all_aliases_from_proj_aka(the_name)
    repeated_system_call(array)
  end
end