Module: RuboCop::Server::ServerCommand::Base::Runner Private
- Defined in:
- lib/rubocop/server/server_command/base.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Common functionality for working with subclasses of this class.
Instance Method Summary collapse
- #run ⇒ Object private
Instance Method Details
#run ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
21 22 23 24 25 26 |
# File 'lib/rubocop/server/server_command/base.rb', line 21 def run validate_token! Dir.chdir(@cwd) do super end end |