module SanePatch

Constants

VERSION

Public Class Methods

patch(gem_name, *requirements, details: nil) { || ... } click to toggle source
# File lib/sane_patch.rb, line 9
  def self.patch(gem_name, *requirements, details: nil)
    gem_spec = Gem.loaded_specs[gem_name]
    raise Errors::GemAbsent, "Can't patch unloaded gem #{gem_name}" unless gem_spec

    gem_requirement = Gem::Requirement.create(requirements)
    if gem_requirement.satisfied_by?(gem_spec.version)
      yield
    else
      message = <<~ERROR
        It looks like the #{gem_name} gem was upgraded.
        There are patches in place that need to be verified.
        Make sure that the patch at #{caller_locations.first} is still needed and working.
      ERROR
      message += "Details:\n#{details}" if details

      raise Errors::IncompatibleVersion, message
    end
  end