Sha256: 582ec215e3255e3c014bf3663dea42e1cb2e635e6a061f853c9cdf8639179b0a
Contents?: true
Size: 344 Bytes
Versions: 49
Compression:
Stored size: 344 Bytes
Contents
# frozen_string_literal: true module Mutant # Commandline interface module CLI # Parse command # # @return [Command] def self.parse(world:, **attributes) Command::Root .parse(world: world, **attributes) .from_right { |message| Command::FailParse.new(world, message) } end end # CLI end # Mutant
Version data entries
49 entries across 49 versions & 1 rubygems