module Rack::Protection::VERSION

Public Class Methods

<=>(other) click to toggle source
# File lib/rack/protection/version.rb, line 11
def VERSION.<=>(other)
  other = other.split('.').map { |i| i.to_i } if other.respond_to? :split
  SIGNATURE <=> Array(other)
end