lib/tocer/cli/shell.rb in tocer-12.0.1 vs lib/tocer/cli/shell.rb in tocer-12.0.2
- old
+ new
@@ -2,13 +2,10 @@
module Tocer
module CLI
# The main Command Line Interface (CLI) object.
class Shell
- PROCESSORS = {
- config: Processors::Config.new,
- build: Processors::Build.new
- }.freeze
+ PROCESSORS = {config: Processors::Config.new, build: Processors::Build.new}.freeze
def initialize parser: Parsers::Assembler.new, processors: PROCESSORS
@parser = parser
@processors = processors
end