Sha256: 3248e5bd2ccd74b6535b8dd8fa6c8e52e3ea56084322de6c36929741cdf86d7d
Contents?: true
Size: 533 Bytes
Versions: 195
Compression:
Stored size: 533 Bytes
Contents
# frozen_string_literal: true # # This code is based on https://github.com/fohte/rubocop-daemon. # # Copyright (c) 2018 Hayato Kawai # # The MIT License (MIT) # # https://github.com/fohte/rubocop-daemon/blob/master/LICENSE.txt # module RuboCop module Server module ClientCommand # This class is a client command to restart server process. # @api private class Restart < Base def run ClientCommand::Stop.new.run ClientCommand::Start.new.run end end end end end
Version data entries
195 entries across 188 versions & 19 rubygems