class Spring::Client::Stop

def self.description

def self.description
  "Stop all spring processes for this project."
end

def call

def call
  case env.stop
  when :stopped
    puts "Spring stopped."
  when :killed
    $stderr.puts "Spring did not stop; killing forcibly."
  when :not_running
    puts "Spring is not running"
  end
end