AlkantarClanX12

Your IP : 3.144.31.86


Current Path : /proc/self/root/opt/alt/ruby32/share/gems/gems/bundler-2.4.19/lib/bundler/
Upload File :
Current File : //proc/self/root/opt/alt/ruby32/share/gems/gems/bundler-2.4.19/lib/bundler/match_metadata.rb

# frozen_string_literal: true

module Bundler
  module MatchMetadata
    def matches_current_ruby?
      @required_ruby_version.satisfied_by?(Gem.ruby_version)
    end

    def matches_current_rubygems?
      @required_rubygems_version.satisfied_by?(Gem.rubygems_version)
    end
  end
end