Sha256: 719f6a56b9887e2f203cae64316c6c29e0f2ecf0824e6943045843d194c97101
Contents?: true
Size: 484 Bytes
Versions: 1
Compression:
Stored size: 484 Bytes
Contents
module Cp8Cli VERSION = "9.0.3" class Version def self.latest? new.latest? end def latest? latest_version <= current_version end private def latest_version @_latest_version ||= Gem.latest_version_for("cp8_cli") || first_version end def current_version @_current_version ||= Gem::Version.new(VERSION) end def first_version @_first_version ||= Gem::Version.new("1.0.0") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cp8_cli-9.0.3 | lib/cp8_cli/version.rb |