Sha256: caa7be47405545cc2481510889a37ac32f2667c3aaadff700333a5708f64be64
Contents?: true
Size: 1.14 KB
Versions: 3
Compression:
Stored size: 1.14 KB
Contents
require 'thor' require 'grape' require 'grape-route-helpers' require 'site_hook/webhook' require 'thin' require 'site_hook/config' require 'super_callbacks' module SiteHook module Commands class ServerClass < Thor # def __version # puts SiteHook::VERSION # end # map ['-v', '--version'] => __version method_option(:host, banner: 'HOST', aliases: ['-h'], type: :string, default: SiteHook::Config.new.class.webhook.host) method_option(:port, banner: 'PORT', aliases: ['-p'], type: :numeric, default: SiteHook::Config.new.class.webhook.port) desc 'listen [options]', '' def listen $threads << Thread.new do ::Thin::Server.start(options[:host], options[:port], SiteHook::Server, debug: true) end $threads << Thread.new do loop do case $stdin.gets when "reload\n" ::SiteHook::Config.reload! when "quit\n" $threads.each do |thr| thr == Thread.current ? exit(0) : thr.exit end end end end $threads.each(&:join) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
site_hook-0.9.16 | lib/site_hook/commands/server_class.rb |
site_hook-0.9.15 | lib/site_hook/commands/server_class.rb |
site_hook-0.9.14 | lib/site_hook/commands/server_class.rb |