Sha256: 2f07baa64d01739635a603c4d904aa2d951df7940432e275080991477340666e
Contents?: true
Size: 217 Bytes
Versions: 16
Compression:
Stored size: 217 Bytes
Contents
#!/usr/bin/env ruby $: << File.expand_path('lib') require 'cl' class Add < Cl::Cmd arg :owners, type: :array, sep: ',' def run p owners end end Cl.new('owners').run(%w(add one,two)) # => ["one", "two"]
Version data entries
16 entries across 16 versions & 1 rubygems