Sha256: 470e39f06e91c4af20f94d19e21ba365adc4083f07622085aba45a4fe036ada5
Contents?: true
Size: 1019 Bytes
Versions: 3
Compression:
Stored size: 1019 Bytes
Contents
#!/usr/bin/env ruby $: << File.expand_path('lib') require 'cl' module Owners class Add < Cl::Cmd register :add summary 'Add one or more owners to an existing owner group' description <<~str Use this command to add one or more owners to an existing owner group. str examples <<~str Adding a single user to the group admins: owners add user --to admins Adding a several users at once: owners add one two three --to admins str end end Cl.new('owners').run(%w(add --help)) # Output: # # Usage: owners add [options] # # Summary: # # Add one or more owners to an existing owner group # # Description: # # Use this command to add one or more owners to an existing # owner group. # # Options: # # --help Get help on this command # # Examples: # # Adding a single user to the group admins: # # owners add user --to admins # # Adding a several users at once: # # owners add one two three --to admins
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
travis-cl-1.2.4 | examples/readme/description |
cl-1.2.4 | examples/readme/description |
cl-1.2.3 | examples/readme/description |