Sha256: 60e05427c2ad6deb3c856507af1989d4492a43168ff2616853704a1fa3ef5c54
Contents?: true
Size: 455 Bytes
Versions: 24
Compression:
Stored size: 455 Bytes
Contents
require "spring/version" module Spring module Client class Stop < Command def self.description "Stop all spring processes for this project." end 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 end end end
Version data entries
24 entries across 24 versions & 1 rubygems