Sha256: b61645d4dfa9d24719a10dff0da217a20ea3b7adcda159ae5767662ff303ee81
Contents?: true
Size: 298 Bytes
Versions: 124
Compression:
Stored size: 298 Bytes
Contents
module CC module CLI class Version < Command SHORT_HELP = "Display the CLI version.".freeze def run say version end def version path = File.expand_path("../../../../VERSION", __FILE__) @version ||= File.read(path) end end end end
Version data entries
124 entries across 124 versions & 2 rubygems