#!/usr/bin/env ruby $: << File.expand_path('lib') require 'cl' class Add < Cl::Cmd opt '--to GROUP', type: :array def run p to end end Cl.new('owners').run(%w(add --to one --to two)) # Output: # # ["one", "two"]