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