Sha256: efa53731779e99317ae8d2ed02b7d404b38b78fbf914d99d0c41a7831b83e49c

Contents?: true

Size: 1.16 KB

Versions: 7

Compression:

Stored size: 1.16 KB

Contents

module ActiveHook
  module Server
    # Handles the start of the ActiveHook server via command line
    #
    class Launcher
      def initialize(argv)
        @argv = argv
      end

      # Parses commmand line options and starts the Manager object
      #
      def start
        start_message
        setup_options
        boot_manager
      end

      private

      def start_message
        ActiveHook.log.info('ActiveHook Server starting!')
        ActiveHook.log.info("* Version #{VERSION}, codename: #{CODENAME}")
      end

      # Parses the arguments passed through the command line.
      #
      def setup_options
        parser = OptionParser.new do |o|
          o.banner = 'Usage: bundle exec bin/activehook [options]'

          o.on('-c', '--config PATH', 'Load PATH for config file') do |arg|
            load(arg)
            ActiveHook.log.info("* Server config:  #{arg}")
          end

          o.on('-h', '--help', 'Prints this help') { puts o && exit }
        end
        parser.parse!(@argv)
      end

      def boot_manager
        manager = ActiveHook::Server::Manager.new(ActiveHook.config.manager_options)
        manager.start
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
activehook-0.1.9 lib/activehook/server/launcher.rb
activehook-0.1.8 lib/activehook/server/launcher.rb
activehook-0.1.7 lib/activehook/server/launcher.rb
activehook-0.1.6 lib/activehook/server/launcher.rb
activehook-0.1.5 lib/activehook/server/launcher.rb
activehook-0.1.4 lib/activehook/server/launcher.rb
activehook-0.1.3 lib/activehook/server/launcher.rb