Sha256: 4af457c87cd1545f6259aa898b748edb854797b8ca865f1ff504fa9265f4142f

Contents?: true

Size: 304 Bytes

Versions: 4

Compression:

Stored size: 304 Bytes

Contents

# frozen_string_literal: true

module Puma
  module Daemon
    module Configuration
      attr_reader :default_dsl, :file_dsl, :user_dsl

      def puma_default_options
        super.merge({ daemon: true })
      end

      def daemonize
        super.merge({ daemon: true })
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
puma-daemon-0.3.2 lib/puma/daemon/configuration.rb
puma-daemon-0.3.0 lib/puma/daemon/configuration.rb
puma-daemon-0.2.3 lib/puma/daemon/configuration.rb
puma-daemon-0.2.2 lib/puma/daemon/configuration.rb