Sha256: 9bb4f877d8e59315e7f15015c60156b26a2440f31a0f69dbb36d49bd04d6af0a
Contents?: true
Size: 570 Bytes
Versions: 15
Compression:
Stored size: 570 Bytes
Contents
# frozen_string_literal: true require_relative 'base' module RubyVault module Commands class Login < Base # @!visibility private def subcommands %w[login] end # @!visibility private def options super + Options::Sets::HTTP_OPTIONS + Options::Sets::OUTPUT_OPTIONS + %w[ -method -no-print -no-store -path -token-only ] end def arguments(parameters) [parameters[:auth]] end end end end
Version data entries
15 entries across 15 versions & 1 rubygems