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