Sha256: 27fa311883fee38fc18fb0654e338539e7c76f998f9285f0b185436357788b17

Contents?: true

Size: 536 Bytes

Versions: 7

Compression:

Stored size: 536 Bytes

Contents

require 'thor'
require_relative './formatter.rb'

module Moose
  module Inventory
    module Cli
      ##
      # Implemention of the "group rmchild" methods of the CLI
      class Group < Thor # rubocop:disable ClassLength
        #==========================
        desc 'rmchild NAME CHILDNAME',
             'Dissociate a child-group CHILDNAME from the group NAME'
        def rmchild
          abort("The 'groups rmchild GROUP' method is not yet implemented")
          puts 'group rmchild'
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
moose-inventory-0.1.6 lib/moose_inventory/cli/group_rmchild.rb
moose-inventory-0.1.5 lib/moose_inventory/cli/group_rmchild.rb
moose-inventory-0.1.4 lib/moose_inventory/cli/group_rmchild.rb
moose-inventory-0.1.3 lib/moose_inventory/cli/group_rmchild.rb
moose-inventory-0.1.2 lib/moose_inventory/cli/group_rmchild.rb
moose-inventory-0.1.1 lib/moose/inventory/cli/group_rmchild.rb
moose-inventory-0.1.0 lib/moose/inventory/cli/group_rmchild.rb