class Sass::Importers::DeprecatedPath

def deprecation_warning

Returns:
  • (String) - The deprecation warning that will be printed the first
def deprecation_warning
  path = @specified_root == "." ? "the current working directory" : @specified_root
  <<WARNING
ATION WARNING: Importing from #{path} will not be
tic in future versions of Sass.  To avoid future errors, you can add it
r environment explicitly by setting `SASS_PATH=#{@specified_root}`, by using the -I command
ption, or by changing your Sass configuration options.
G
end