lib/command/version.rb in cpl-0.4.1 vs lib/command/version.rb in cpl-0.5.0

- old
+ new

@@ -2,13 +2,13 @@ module Command class Version < Base NAME = "version" DESCRIPTION = "Displays the current version of the CLI" - LONG_DESCRIPTION = <<~HEREDOC + LONG_DESCRIPTION = <<~DESC - Displays the current version of the CLI - Can also be done with `cpl --version` or `cpl -v` - HEREDOC + DESC def call puts Cpl::VERSION end end