Sha256: d66510917028618e4adbc20f973840cfe4859f241373a4b9d432148a9fe10144

Contents?: true

Size: 638 Bytes

Versions: 4

Compression:

Stored size: 638 Bytes

Contents

# frozen_string_literal: true

module PgEventstore
  module CLI
    module Parsers
      class SubscriptionParser < BaseParser
        class << self
          # @return [String]
          def banner
            <<~TEXT
              Usage: pg-eventstore subscriptions [command] [options]
                
                Commands:
                  start     Start subscriptions. Example: pg-eventstore subscriptions start -r lib/my_subscriptions.rb 
                  stop      Stop subscriptions. Example: pg-eventstore subscriptions stop

                Options:
            TEXT
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pg_eventstore-1.9.0 lib/pg_eventstore/cli/parsers/subscription_parser.rb
pg_eventstore-1.8.0 lib/pg_eventstore/cli/parsers/subscription_parser.rb
pg_eventstore-1.7.0 lib/pg_eventstore/cli/parsers/subscription_parser.rb
pg_eventstore-1.6.0 lib/pg_eventstore/cli/parsers/subscription_parser.rb