Sha256: 1f11424e93b2c031404a0987ebe1423279db82bb2960c1134c0c2431807cf318
Contents?: true
Size: 390 Bytes
Versions: 1
Compression:
Stored size: 390 Bytes
Contents
# frozen_string_literal: true require_relative 'base' module RubyVault module Commands class Write < Base # @!visibility private def subcommands %w[write] end # @!visibility private def options %w[] + super end # @!visibility private def arguments(parameters) [parameters[:path]] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_vault-0.1.0.pre.5 | lib/ruby_vault/commands/write.rb |