1
0
mirror of https://github.com/bitwarden/help synced 2025-12-22 11:13:14 +00:00
Files
help/vendor/bundle/ruby/2.6.0/gems/sassc-2.4.0/lib/sassc.rb
fred_the_tech_writer 906e2ca0dd Promote to Master (#748)
* initial commit

* adding quotes for the array error

* Create Gemfile

* Create Gemfile.lock

* add .nvmrc and .node-version

* removed /article from URL

* update links to work with netlify

* more fixed links

* link fixes

* update bad links

* Update netlify.toml

toml test for redirects

* article redirect

* link fixes

* Update index.html

* Update netlify.toml

* Update _config.yml

* Update netlify.toml

* Update netlify.toml

* Update netlify.toml

* Update netlify.toml

* Update netlify.toml

* add article back into URL for launch

* Update netlify.toml

* Update netlify.toml

* add order to categories front matter

* Update netlify.toml

* update

* sidemenu update

* Revert "sidemenu update"

This reverts commit 5441c3d35c.

* update order prop

* Navbar updates per Gary and compiler warnings

* font/style tweaks

* Update sidebar.html

* Stage Release Documentation (#739)

* initial drafts

* rewrite Custom Fields article to prioritize new context-menu option & better organize ancillary information

* edit

* edit

* Custom Field Context Menu & CAPTCHA item in release notes

* SSO relink event

* update rn

* small edits

* improve release notes titles

* fix side menu

* Edits courtest of mportune!

* update order

* link fixes

* link cleanup

* image updates and a link

* fix trailing slash

Co-authored-by: DanHillesheim <79476558+DanHillesheim@users.noreply.github.com>
2021-09-21 13:21:11 -04:00

58 lines
2.3 KiB
Ruby

# frozen_string_literal: true
module SassC
# The global load paths for Sass files. This is meant for plugins and
# libraries to register the paths to their Sass stylesheets to that they may
# be `@imported`. This load path is used by every instance of {Sass::Engine}.
# They are lower-precedence than any load paths passed in via the
# {file:SASS_REFERENCE.md#load_paths-option `:load_paths` option}.
#
# If the `SASS_PATH` environment variable is set,
# the initial value of `load_paths` will be initialized based on that.
# The variable should be a colon-separated list of path names
# (semicolon-separated on Windows).
#
# Note that files on the global load path are never compiled to CSS
# themselves, even if they aren't partials. They exist only to be imported.
#
# @example
# SassC.load_paths << File.dirname(__FILE__ + '/sass')
# @return [Array<String, Pathname, Sass::Importers::Base>]
def self.load_paths
@load_paths ||= if ENV['SASS_PATH']
ENV['SASS_PATH'].split(SassC::Util.windows? ? ';' : ':')
else
[]
end
end
end
require_relative "sassc/version"
require_relative "sassc/native"
require_relative "sassc/import_handler"
require_relative "sassc/importer"
require_relative "sassc/util"
require_relative "sassc/util/normalized_map"
require_relative "sassc/script"
require_relative "sassc/script/value"
require_relative "sassc/script/value/bool"
require_relative "sassc/script/value/number"
require_relative "sassc/script/value/color"
require_relative "sassc/script/value/string"
require_relative "sassc/script/value/list"
require_relative "sassc/script/value/map"
require_relative "sassc/script/functions"
require_relative "sassc/script/value_conversion"
require_relative "sassc/script/value_conversion/base"
require_relative "sassc/script/value_conversion/string"
require_relative "sassc/script/value_conversion/number"
require_relative "sassc/script/value_conversion/color"
require_relative "sassc/script/value_conversion/map"
require_relative "sassc/script/value_conversion/list"
require_relative "sassc/script/value_conversion/bool"
require_relative "sassc/functions_handler"
require_relative "sassc/dependency"
require_relative "sassc/error"
require_relative "sassc/engine"
require_relative "sassc/sass_2_scss"