Method: Spring::CommandWrapper#call

Defined in:
lib/spring-jruby/command_wrapper.rb

#callObject



36
37
38
39
40
41
42
# File 'lib/spring-jruby/command_wrapper.rb', line 36

def call
  if command.respond_to?(:call)
    command.call
  else
    load exec
  end
end