Sha256: bca5c2152457f8c8fa1564ff10867a565505b422d2251361cbb90b3bad53d4b4
Contents?: true
Size: 325 Bytes
Versions: 34
Compression:
Stored size: 325 Bytes
Contents
module Rack module Protection def self.version VERSION end SIGNATURE = [1, 5, 5] VERSION = SIGNATURE.join('.') VERSION.extend Comparable def VERSION.<=>(other) other = other.split('.').map { |i| i.to_i } if other.respond_to? :split SIGNATURE <=> Array(other) end end end
Version data entries
34 entries across 34 versions & 6 rubygems