module Kernel
Public Instance Methods
not_on_launching(file, param={})
click to toggle source
# File lib/launchsupport.rb, line 9 def not_on_launching file, param={}, &b LaunchSupport::launching_my_file_process(file, param, &b) unless $0 == file end
on_launching(file, param={})
click to toggle source
# File lib/launchsupport.rb, line 5 def on_launching file, param={}, &b LaunchSupport::launching_my_file_process(file, param, &b) if $0 == file end