Sha256: be492e8b7a53619dcc036ec97c561262acf1a97cfca51ebed91f2c746c347969

Contents?: true

Size: 682 Bytes

Versions: 4

Compression:

Stored size: 682 Bytes

Contents

# frozen_string_literal: true

require "rubygems"

module Combustion
  class VersionGate
    def self.call(name, *constraints)
      new(name).call(*constraints)
    end

    def initialize(name)
      @name = name
    end

    # Using matches_spec? instead of match? because the former returns true
    # even when the spec has an appropriate _pre-release_ version.
    def call(*constraints)
      return false if spec.nil?

      dependency(*constraints).matches_spec?(spec)
    end

    private

    attr_reader :name

    def dependency(*constraints)
      Gem::Dependency.new(name, *constraints)
    end

    def spec
      Gem.loaded_specs.fetch(name, nil)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
combustion-1.5.0 lib/combustion/version_gate.rb
combustion-1.4.0 lib/combustion/version_gate.rb
combustion-1.3.7 lib/combustion/version_gate.rb
combustion-1.3.6 lib/combustion/version_gate.rb