1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/bundler/support/less_than_proc.rb

21 lines
430 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class LessThanProc < Proc
attr_accessor :present
def self.with(present)
provided = Gem::Version.new(present.dup)
new do |required|
if required =~ /[=><~]/
!Gem::Requirement.new(required).satisfied_by?(provided)
else
provided < Gem::Version.new(required)
end
end.tap {|l| l.present = present }
end
def inspect
"\"=< #{present}\""
end
end