Sha256: d92fd66b4f7e6bea9d262b2e2f6df7c0af9276cb61c69e3e211a312b6d01d88a
Contents?: true
Size: 325 Bytes
Versions: 54
Compression:
Stored size: 325 Bytes
Contents
module Rack module Protection def self.version VERSION end SIGNATURE = [1, 2, 0] 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
54 entries across 54 versions & 4 rubygems