Sha256: 20d6a887f3cbb38cec83e5083bd84855eca1504117d8b2641aa3193a00b3d77b

Contents?: true

Size: 528 Bytes

Versions: 1

Compression:

Stored size: 528 Bytes

Contents

module Superhosting
  module Cli
    module Cmd
      class UserPasswd < Base
        option :generate,
               :short => '-g',
               :long  => '--generate',
               :boolean => true

        option :container_name,
               :short => '-c NAME',
               :long  => '--container NAME',
               :required => true

        def self.has_required_param?
          true
        end

        def self.after_action(data, config)
          self.info(data)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
superhosting-0.0.2 lib/superhosting/cli/cmd/user_passwd.rb