Sha256: 2c7acb5052312d7d3f8fd0897e876ff9ca6dd8da77ea7dfc44af5e5b76599754
Contents?: true
Size: 941 Bytes
Versions: 15
Compression:
Stored size: 941 Bytes
Contents
require 'padrino-support' module Padrino module Cli module Adapter class << self # Start for the given options a rackup handler def start(options) Padrino.run!(Utils.symbolize_keys(options)) end # Method that stop (if exist) a running Padrino.application def stop(options) options = Utils.symbolize_keys(options) if File.exist?(options[:pid]) pid = File.read(options[:pid]).to_i puts "=> Sending INT to process with pid #{pid}" begin Process.kill(2, pid) rescue Errno::ESRCH, RangeError => error puts error.message exit rescue Errno::EPERM => error puts error.message abort end else puts "=> #{options[:pid]} not found!" abort end end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems