Sha256: 878084a38bb6954a2200f28eb2f30fb2185cc2777fb7f3509bd68c4b7883aaf5
Contents?: true
Size: 626 Bytes
Versions: 3
Compression:
Stored size: 626 Bytes
Contents
require 'r10k/cli' require 'cri' module R10K::CLI module Module def self.command @cmd ||= Cri::Command.define do name 'module' usage 'module <subcommand>' summary 'DEPRECATED: Operate on a specific puppet module' be_hidden required :c, :config, 'Specify a configuration file' required :e, :environment, 'Specify a particular environment' run do |opts, args, cmd| puts cmd.help exit 0 end end end end self.command.add_command(Module.command) end require 'r10k/cli/module/deploy' require 'r10k/cli/module/list'
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
r10k-1.0.0rc3 | lib/r10k/cli/module.rb |
r10k-1.0.0rc2 | lib/r10k/cli/module.rb |
r10k-1.0.0rc1 | lib/r10k/cli/module.rb |