module Kubes::Args::Dsl
Public Instance Methods
command(*commands, **props)
click to toggle source
# File lib/kubes/args/dsl.rb, line 3 def command(*commands, **props) commands.each do |name| each_command(name, props) end end
Also aliased as: commands
each_command(name, props={})
click to toggle source
# File lib/kubes/args/dsl.rb, line 10 def each_command(name, props={}) @commands[name.to_s] = props end