Sha256: b64fbcc52929539d5817a1af2ab45f201e60a67ddc782dc2887088e1ef698efa

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 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.webhook.host)
      method_option(:port, banner: 'PORT', aliases: ['-p'], type: :numeric, default: SiteHook::Config.new.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

4 entries across 4 versions & 1 rubygems

Version Path
site_hook-0.9.12 lib/site_hook/commands/server_class.rb
site_hook-0.9.11 lib/site_hook/commands/server_class.rb
site_hook-0.9.10 lib/site_hook/commands/server_class.rb
site_hook-0.9.9 lib/site_hook/commands/server_class.rb