Sha256: 06e10b7c05924f85600d9f47411905a0072af4a97c0c8d4a3b8079c1359bc96c
Contents?: true
Size: 355 Bytes
Versions: 168
Compression:
Stored size: 355 Bytes
Contents
require_relative "builds_config" require_relative "loads_runner" module Standard class Cli def initialize(argv) @argv = argv @builds_config = BuildsConfig.new @loads_runner = LoadsRunner.new end def run config = @builds_config.call(@argv) @loads_runner.call(config.runner).call(config).to_i end end end
Version data entries
168 entries across 168 versions & 5 rubygems