Module: R10K::CLI::Version
- Defined in:
- lib/r10k/cli/version.rb
Class Method Summary collapse
Class Method Details
.command ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/r10k/cli/version.rb', line 8 def self.command @cmd ||= Cri::Command.define do name 'version' usage 'version' summary 'Print the version of r10k' run do |opts, args, cmd| puts R10K::VERSION exit 0 end end end |