Sha256: a2d39b8ec6bb5896efaa5bcf10b43d441bcd208bbef69c93925286dafba1dcba
Contents?: true
Size: 291 Bytes
Versions: 1
Compression:
Stored size: 291 Bytes
Contents
# frozen_string_literal: true module Makit VERSION = "0.0.27" class Version # given an array of version strings, return the highest version def self.get_highest_version(versions) versions.sort { |a, b| Gem::Version.new(a) <=> Gem::Version.new(b) }.last end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
makit-0.0.27 | lib/makit/version.rb |