Method: RC::Interface#tweak

Defined in:
lib/rc/interface.rb

#tweak(command) ⇒ Object (private)



317
318
319
320
321
322
# File 'lib/rc/interface.rb', line 317

def tweak(command)
  tweak = File.join(TWEAKS_DIR, command + '.rb')
  if File.exist?(tweak)
    require tweak
  end
end