Sha256: f4b3db74ebf99de1f9759a5eab0342a4f826ec57cd60249140642c9c32923a6b
Contents?: true
Size: 484 Bytes
Versions: 1
Compression:
Stored size: 484 Bytes
Contents
module Cp8Cli VERSION = "6.0.0" 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-6.0.0 | lib/cp8_cli/version.rb |