All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.compass-1.0.3.lib.compass.deprecation.rb Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
module Compass
  module Deprecation
    class << self
      attr_accessor :issued_deprecations
    end
    self.issued_deprecations = {}

    def self.deprecated!(identifier, message)
      return if Deprecation.issued_deprecations[identifier]
      Deprecation.issued_deprecations[identifier] = true
      warn message
      warn "Called from #{caller[1]}"
    end

    def self.mark_as_issued(identifier)
      Deprecation.issued_deprecations[identifier] = true
    end
  end
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy