gems.compass-1.0.3.lib.compass.deprecation.rb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
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