Sha256: c017bd67805857f29e26983f368625480832248c7dc078cef541f0cf5b1776f4

Contents?: true

Size: 274 Bytes

Versions: 3

Compression:

Stored size: 274 Bytes

Contents

include Boot::Lib::Core

module Boot::Lib::Commands
  options_obj = Slop::Options.new
  
  Version = SubCommand.new(
    'version', # Name of the sub command
    'Print the version',
    options_obj,
    false
  ) { |options, args|
    puts Boot::VERSION
  }
  @Version
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
boot-cli-1.0.0 lib/Boot/Lib/Commands/Version.rb
boot-cli-0.3.1 lib/Boot/Lib/Commands/Version.rb
boot-cli-0.3.0 lib/Boot/Lib/Commands/Version.rb