Module: Sass::Util
- Extended by:
- Util
- Included in:
- Util
- Defined in:
- lib/sass/util.rb,
lib/sass/util/test.rb,
lib/sass/util/subset_map.rb,
lib/sass/util/normalized_map.rb
Overview
A module containing various useful functions.
Defined Under Namespace
Modules: Test Classes: MultibyteStringScanner, NormalizedMap, StaticConditionalContext, SubsetMap
Constant Summary collapse
- RUBY_VERSION_COMPONENTS =
An array of ints representing the Ruby version number.
RUBY_VERSION.split(".").map {|s| s.to_i}
- RUBY_ENGINE =
The Ruby engine we're running under. Defaults to
"ruby"
if the top-level constant is undefined. defined?(::RUBY_ENGINE) ? ::RUBY_ENGINE : "ruby"
- CHARSET_REGEXP =
/\A@charset "([^"]+)"/
- UTF_8_BOM =
bom.encode("UTF-8").force_encoding('BINARY')
- UTF_16BE_BOM =
bom.encode("UTF-16BE").force_encoding('BINARY')
- UTF_16LE_BOM =
bom.encode("UTF-16LE").force_encoding('BINARY')
- VLQ_BASE_SHIFT =
5
- VLQ_BASE =
1 << VLQ_BASE_SHIFT
- VLQ_BASE_MASK =
VLQ_BASE - 1
- VLQ_CONTINUATION_BIT =
VLQ_BASE
- BASE64_DIGITS =
('A'..'Z').to_a + ('a'..'z').to_a + ('0'..'9').to_a + ['+', '/']
- BASE64_DIGIT_MAP =
begin map = {} BASE64_DIGITS.each_with_index.map do |digit, i| map[digit] = i end map end
Instance Method Summary collapse
-
#abstract(obj)
Throws a NotImplementedError for an abstract method.
-
#ap_geq?(version) ⇒ Boolean
Returns whether this environment is using ActionPack of a version greater than or equal to that specified.
-
#ap_geq_3? ⇒ Boolean
Returns whether this environment is using ActionPack version 3.0.0 or greater.
-
#array_minus(minuend, subtrahend) ⇒ Array
Returns a sub-array of
minuend
containing only elements that are also insubtrahend
. -
#atomic_create_and_write_file(filename, perms = 0666) {|tmpfile| ... }
This creates a temp file and yields it for writing.
-
#av_template_class(name)
Returns an ActionView::Template* class.
-
#caller_info(entry = nil) ⇒ [String, Integer, (String, nil)]
Returns information about the caller of the previous method.
-
#check_range(name, range, value, unit = '') ⇒ Numeric
Asserts that
value
falls withinrange
(inclusive), leaving room for slight floating-point errors. -
#check_sass_encoding(str) ⇒ (String, Encoding)
Like #check_encoding, but also checks for a
@charset
declaration at the beginning of the file and uses that encoding if it exists. -
#cleanpath(path) ⇒ Pathname
Like
Pathname#cleanpath
, but normalizes Windows paths to always use backslash separators. -
#deprecated(obj, message = nil)
Prints a deprecation warning for the caller method.
-
#destructure(val) ⇒ Object
Prepare a value for a destructuring assignment (e.g.
a, b = val
). -
#downcase(string)
Like
String.downcase
, but only ever downcases ASCII letters. -
#encode_vlq(value) ⇒ String
Encodes
value
as VLQ (http://en.wikipedia.org/wiki/VLQ). -
#extract!(array) {|el| ... } ⇒ Array
Destructively removes all elements from an array that match a block, and returns the removed elements.
-
#extract_values(arr) ⇒ (String, Array)
Extracts the non-string vlaues from an array containing both strings and non-strings.
-
#file_uri_from_path(path) ⇒ String
Converts
path
to a "file:" URI. -
#flatten_vertically(arrs) ⇒ Array
Flattens the first level of nested arrays in
arrs
. -
#glob(path)
Like
Dir.glob
, but works with backslash-separated paths on Windows. -
#inject_values(str, values) ⇒ Array
Undoes #extract_values by transforming a string with escape sequences into an array of strings and non-string values.
-
#inspect_obj(obj) ⇒ String
Like
Object#inspect
, but preserves non-ASCII characters rather than escaping them under Ruby 1.9.2. -
#intersperse(enum, val) ⇒ Array
Intersperses a value in an enumerable, as would be done with
Array#join
but without concatenating the array together afterwards. -
#ironruby? ⇒ Boolean
Whether or not this is running on IronRuby.
-
#jruby? ⇒ Boolean
Whether or not this is running on JRuby.
-
#jruby_version ⇒ Array<Integer>
Returns an array of ints representing the JRuby version number.
-
#json_escape_string(s) ⇒ String
Escapes certain characters so that the result can be used as the JSON string value.
-
#json_value_of(v) ⇒ String
Converts the argument into a valid JSON value.
-
#lcs(x, y) {|a, b| ... } ⇒ Array
Computes a single longest common subsequence for
x
andy
. -
#map_hash(hash) {|key, value| ... } ⇒ Hash
Maps the key-value pairs of a hash according to a block.
-
#map_keys(hash) {|key| ... } ⇒ Hash
Maps the keys in a hash according to a block.
-
#map_vals(hash) {|value| ... } ⇒ Hash
Maps the values in a hash according to a block.
-
#max(val1, val2)
Returns the maximum of
val1
andval2
. -
#merge_adjacent_strings(arr) ⇒ Array
Concatenates all strings that are adjacent in an array, while leaving other elements as they are.
-
#min(val1, val2)
Returns the minimum of
val1
andval2
. -
#pathname(path) ⇒ Pathname
Like
Pathname.new
, but normalizes Windows paths to always use backslash separators. -
#paths(arrs) ⇒ Array<Arrays>
Return an array of all possible paths through the given arrays.
-
#powerset(arr) ⇒ Set<Set>
Computes the powerset of the given array.
-
#rails_env ⇒ String?
Returns the environment of the Rails application, if this is running in a Rails context.
-
#rails_root ⇒ String?
Returns the root of the Rails application, if this is running in a Rails context.
-
#rbx? ⇒ Boolean
Whether or not this is running on Rubinius.
-
#realpath(path) ⇒ Pathname
Returns
path
with all symlinks resolved. -
#relative_path_from(path, from) ⇒ Pathname?
Returns
path
relative tofrom
. -
#replace_subseq(arr, subseq, replacement) ⇒ Array
Non-destructively replaces all occurrences of a subsequence in an array with another subsequence.
-
#restrict(value, range) ⇒ Numeric
Restricts a number to falling within a given range.
-
#retry_on_windows { ... }
Retries a filesystem operation if it fails on Windows.
-
#round(value) ⇒ Numeric
Like [Fixnum.round], but leaves rooms for slight floating-point differences.
-
#ruby2_4? ⇒ Boolean
Whether or not this is running under Ruby 2.4 or higher.
-
#sass_warn(msg)
The same as
Kernel#warn
, but is silenced by #silence_sass_warnings. -
#scope(file) ⇒ String
Returns the path of a file relative to the Sass root directory.
-
#silence_sass_warnings { ... }
Silences all Sass warnings within a block.
- #slice_by(enum)
-
#sourcemap_name(css) ⇒ String
Builds a sourcemap file name given the generated CSS file name.
-
#strip_string_array(arr) ⇒ Array
Destructively strips whitespace from the beginning and end of the first and last elements, respectively, in the array (if those elements are strings).
-
#subsequence?(seq1, seq2) ⇒ Boolean
Returns whether or not
seq1
is a subsequence ofseq2
. -
#substitute(ary, from, to)
Substitutes a sub-array of one array with another sub-array.
-
#undefined_conversion_error_char(e) ⇒ String
Returns a string description of the character that caused an
Encoding::UndefinedConversionError
. -
#upcase(string)
Like
String.upcase
, but only ever upcases ASCII letters. -
#version_geq(v1, v2) ⇒ Boolean
Returns whether one version string represents the same or a more recent version than another.
-
#version_gt(v1, v2) ⇒ Boolean
Returns whether one version string represents a more recent version than another.
-
#windows? ⇒ Boolean
Whether or not this is running on Windows.
-
#with_extracted_values(arr) {|str| ... } ⇒ Array
Allows modifications to be performed on the string form of an array containing both strings and non-strings.
Instance Method Details
#abstract(obj)
Throws a NotImplementedError for an abstract method.
442 443 444 |
# File 'lib/sass/util.rb', line 442
def abstract(obj)
raise NotImplementedError.new("#{obj.class} must implement ##{caller_info[2]}")
end
|
#ap_geq?(version) ⇒ Boolean
Returns whether this environment is using ActionPack of a version greater than or equal to that specified.
516 517 518 519 520 521 522 |
# File 'lib/sass/util.rb', line 516
def ap_geq?(version)
# The ActionPack module is always loaded automatically in Rails >= 3
return false unless defined?(ActionPack) && defined?(ActionPack::VERSION) &&
defined?(ActionPack::VERSION::STRING)
version_geq(ActionPack::VERSION::STRING, version)
end
|
#ap_geq_3? ⇒ Boolean
Returns whether this environment is using ActionPack version 3.0.0 or greater.
505 506 507 |
# File 'lib/sass/util.rb', line 505
def ap_geq_3?
ap_geq?("3.0.0.beta1")
end
|
#array_minus(minuend, subtrahend) ⇒ Array
Returns a sub-array of minuend
containing only elements that are also in
subtrahend
. Ensures that the return value has the same order as
minuend
, even on Rubinius where that's not guaranteed by Array#-
.
315 316 317 318 319 |
# File 'lib/sass/util.rb', line 315
def array_minus(minuend, subtrahend)
return minuend - subtrahend unless rbx?
set = Set.new(minuend) - subtrahend
minuend.select {|e| set.include?(e)}
end
|
#atomic_create_and_write_file(filename, perms = 0666) {|tmpfile| ... }
This creates a temp file and yields it for writing. When the write is complete, the file is moved into the desired location. The atomicity of this operation is provided by the filesystem's rename operation.
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 |
# File 'lib/sass/util.rb', line 1005
def atomic_create_and_write_file(filename, perms = 0666)
require 'tempfile'
tmpfile = Tempfile.new(File.basename(filename), File.dirname(filename))
tmpfile.binmode if tmpfile.respond_to?(:binmode)
result = yield tmpfile
tmpfile.close
ATOMIC_WRITE_MUTEX.synchronize do
begin
File.chmod(perms & ~File.umask, tmpfile.path)
rescue Errno::EPERM
# If we don't have permissions to chmod the file, don't let that crash
# the compilation. See issue 1215.
end
File.rename tmpfile.path, filename
end
result
ensure
# close and remove the tempfile if it still exists,
# presumably due to an error during write
tmpfile.close if tmpfile
tmpfile.unlink if tmpfile
end
|
#av_template_class(name)
Returns an ActionView::Template* class.
In pre-3.0 versions of Rails, most of these classes
were of the form ActionView::TemplateFoo
,
while afterwards they were of the form ActionView;:Template::Foo
.
532 533 534 535 |
# File 'lib/sass/util.rb', line 532
def av_template_class(name)
return ActionView.const_get("Template#{name}") if ActionView.const_defined?("Template#{name}")
ActionView::Template.const_get(name.to_s)
end
|
#caller_info(entry = nil) ⇒ [String, Integer, (String, nil)]
Returns information about the caller of the previous method.
390 391 392 393 394 395 396 397 398 |
# File 'lib/sass/util.rb', line 390
def caller_info(entry = nil)
# JRuby evaluates `caller` incorrectly when it's in an actual default argument.
entry ||= caller[1]
info = entry.scan(/^((?:[A-Za-z]:)?.*?):(-?.*?)(?::.*`(.+)')?$/).first
info[1] = info[1].to_i
# This is added by Rubinius to designate a block, but we don't care about it.
info[2].sub!(/ \{\}\Z/, '') if info[2]
info
end
|
#check_range(name, range, value, unit = '') ⇒ Numeric
Asserts that value
falls within range
(inclusive), leaving
room for slight floating-point errors.
356 357 358 359 360 361 362 363 364 365 |
# File 'lib/sass/util.rb', line 356
def check_range(name, range, value, unit = '')
grace = (-0.00001..0.00001)
str = value.to_s
value = value.value if value.is_a?(Sass::Script::Value::Number)
return value if range.include?(value)
return range.first if grace.include?(value - range.first)
return range.last if grace.include?(value - range.last)
raise ArgumentError.new(
"#{name} #{str} must be between #{range.first}#{unit} and #{range.last}#{unit}")
end
|
#check_sass_encoding(str) ⇒ (String, Encoding)
Like #check_encoding, but also checks for a @charset
declaration
at the beginning of the file and uses that encoding if it exists.
Sass follows CSS's decoding rules.
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 |
# File 'lib/sass/util.rb', line 737
def check_sass_encoding(str)
# Determine the fallback encoding following section 3.2 of CSS Syntax Level 3 and Encodings:
# http://www.w3.org/TR/2013/WD-css-syntax-3-20130919/#determine-the-fallback-encoding
# http://encoding.spec.whatwg.org/#decode
binary = str.dup.force_encoding("BINARY")
if binary.start_with?(UTF_8_BOM)
binary.slice! 0, UTF_8_BOM.length
str = binary.force_encoding('UTF-8')
elsif binary.start_with?(UTF_16BE_BOM)
binary.slice! 0, UTF_16BE_BOM.length
str = binary.force_encoding('UTF-16BE')
elsif binary.start_with?(UTF_16LE_BOM)
binary.slice! 0, UTF_16LE_BOM.length
str = binary.force_encoding('UTF-16LE')
elsif binary =~ CHARSET_REGEXP
charset = $1.force_encoding('US-ASCII')
encoding = Encoding.find(charset)
if encoding.name == 'UTF-16' || encoding.name == 'UTF-16BE'
encoding = Encoding.find('UTF-8')
end
str = binary.force_encoding(encoding)
elsif str.encoding.name == "ASCII-8BIT"
# Normally we want to fall back on believing the Ruby string
# encoding, but if that's just binary we want to make sure
# it's valid UTF-8.
str = str.force_encoding('utf-8')
end
find_encoding_error(str) unless str.valid_encoding?
begin
# If the string is valid, preprocess it according to section 3.3 of CSS Syntax Level 3.
return str.encode("UTF-8").gsub(/\r\n?|\f/, "\n").tr("\u0000", "�"), str.encoding
rescue EncodingError
find_encoding_error(str)
end
end
|
#cleanpath(path) ⇒ Pathname
Like Pathname#cleanpath
, but normalizes Windows paths to always use
backslash separators. Normally, Pathname#cleanpath
actually does the
reverse -- it will convert backslashes to forward slashes, which can break
Pathname#relative_path_from
.
613 614 615 616 |
# File 'lib/sass/util.rb', line 613
def cleanpath(path)
path = Pathname.new(path) unless path.is_a?(Pathname)
pathname(path.cleanpath.to_s)
end
|
#deprecated(obj, message = nil)
Prints a deprecation warning for the caller method.
450 451 452 453 454 455 |
# File 'lib/sass/util.rb', line 450
def deprecated(obj, message = nil)
obj_class = obj.is_a?(Class) ? "#{obj}." : "#{obj.class}#"
full_message = "DEPRECATION WARNING: #{obj_class}#{caller_info[2]} " +
"will be removed in a future version of Sass.#{("\n" + message) if message}"
Sass::Util.sass_warn full_message
end
|
#destructure(val) ⇒ Object
Prepare a value for a destructuring assignment (e.g. a, b =
val
). This works around a performance bug when using
ActiveSupport, and only needs to be called when val
is likely
to be nil
reasonably often.
See this bug report.
698 699 700 |
# File 'lib/sass/util.rb', line 698
def destructure(val)
val || []
end
|
#downcase(string)
Like String.downcase
, but only ever downcases ASCII letters.
303 304 305 306 |
# File 'lib/sass/util.rb', line 303
def downcase(string)
return string.downcase unless ruby2_4?
string.downcase(:ascii)
end
|
#encode_vlq(value) ⇒ String
Encodes value
as VLQ (http://en.wikipedia.org/wiki/VLQ).
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 |
# File 'lib/sass/util.rb', line 952
def encode_vlq(value)
if value < 0
value = ((-value) << 1) | 1
else
value <<= 1
end
result = ''
begin
digit = value & VLQ_BASE_MASK
value >>= VLQ_BASE_SHIFT
if value > 0
digit |= VLQ_CONTINUATION_BIT
end
result << BASE64_DIGITS[digit]
end while value > 0
result
end
|
#extract!(array) {|el| ... } ⇒ Array
Destructively removes all elements from an array that match a block, and returns the removed elements.
783 784 785 786 787 788 789 790 791 |
# File 'lib/sass/util.rb', line 783
def extract!(array)
out = []
array.reject! do |e|
next false unless yield e
out << e
true
end
out
end
|
#extract_values(arr) ⇒ (String, Array)
Extracts the non-string vlaues from an array containing both strings and non-strings. These values are replaced with escape sequences. This can be undone using #inject_values.
This is useful e.g. when we want to do string manipulation on an interpolated string.
The precise format of the resulting string is not guaranteed. However, it is guaranteed that newlines and whitespace won't be affected.
837 838 839 840 841 842 843 844 845 |
# File 'lib/sass/util.rb', line 837
def extract_values(arr)
values = []
mapped = arr.map do |e|
next e.gsub('{', '{{') if e.is_a?(String)
values << e
next "{#{values.count - 1}}"
end
return mapped.join, values
end
|
#file_uri_from_path(path) ⇒ String
Converts path
to a "file:" URI. This handles Windows paths correctly.
664 665 666 667 668 669 670 671 672 |
# File 'lib/sass/util.rb', line 664
def file_uri_from_path(path)
path = path.to_s if path.is_a?(Pathname)
path = path.tr('\\', '/') if windows?
path = URI::DEFAULT_PARSER.escape(path)
return path.start_with?('/') ? "file://" + path : path unless windows?
return "file:///" + path.tr("\\", "/") if path =~ %r{^[a-zA-Z]:[/\\]}
return "file:" + path.tr("\\", "/") if path =~ %r{\\\\[^\\]+\\[^\\/]+}
path.tr("\\", "/")
end
|
#flatten_vertically(arrs) ⇒ Array
Flattens the first level of nested arrays in arrs
. Unlike
Array#flatten
, this orders the result by taking the first
values from each array in order, then the second, and so on.
799 800 801 802 803 804 805 806 807 808 809 |
# File 'lib/sass/util.rb', line 799
def flatten_vertically(arrs)
result = []
arrs = arrs.map {|sub| sub.is_a?(Array) ? sub.dup : Array(sub)}
until arrs.empty?
arrs.reject! do |arr|
result << arr.shift
arr.empty?
end
end
result
end
|
#glob(path)
Like Dir.glob
, but works with backslash-separated paths on Windows.
584 585 586 587 588 589 590 591 |
# File 'lib/sass/util.rb', line 584
def glob(path)
path = path.tr('\\', '/') if windows?
if block_given?
Dir.glob(path) {|f| yield(f)}
else
Dir.glob(path)
end
end
|
#inject_values(str, values) ⇒ Array
Undoes #extract_values by transforming a string with escape sequences into an array of strings and non-string values.
853 854 855 856 857 858 859 860 861 |
# File 'lib/sass/util.rb', line 853
def inject_values(str, values)
return [str.gsub('{{', '{')] if values.empty?
# Add an extra { so that we process the tail end of the string
result = (str + '{{').scan(/(.*?)(?:(\{\{)|\{(\d+)\})/m).map do |(pre, esc, n)|
[pre, esc ? '{' : '', n ? values[n.to_i] : '']
end.flatten(1)
result[-2] = '' # Get rid of the extra {
merge_adjacent_strings(result).reject {|s| s == ''}
end
|
#inspect_obj(obj) ⇒ String
Like Object#inspect
, but preserves non-ASCII characters rather than
escaping them under Ruby 1.9.2. This is necessary so that the
precompiled Haml template can be #encode
d into @options[:encoding]
before being evaluated.
818 819 820 821 822 823 |
# File 'lib/sass/util.rb', line 818
def inspect_obj(obj)
return obj.inspect unless version_geq(RUBY_VERSION, "1.9.2")
return ':' + inspect_obj(obj.to_s) if obj.is_a?(Symbol)
return obj.inspect unless obj.is_a?(String)
'"' + obj.gsub(/[\x00-\x7F]+/) {|s| s.inspect[1...-1]} + '"'
end
|
#intersperse(enum, val) ⇒ Array
Intersperses a value in an enumerable, as would be done with Array#join
but without concatenating the array together afterwards.
215 216 217 |
# File 'lib/sass/util.rb', line 215
def intersperse(enum, val)
enum.inject([]) {|a, e| a << e << val}[0...-1]
end
|
#ironruby? ⇒ Boolean
Whether or not this is running on IronRuby.
553 554 555 556 |
# File 'lib/sass/util.rb', line 553
def ironruby?
return @ironruby if defined?(@ironruby)
@ironruby = RUBY_ENGINE == "ironruby"
end
|
#jruby? ⇒ Boolean
Whether or not this is running on JRuby.
569 570 571 572 |
# File 'lib/sass/util.rb', line 569
def jruby?
return @jruby if defined?(@jruby)
@jruby = RUBY_PLATFORM =~ /java/
end
|
#jruby_version ⇒ Array<Integer>
Returns an array of ints representing the JRuby version number.
577 578 579 |
# File 'lib/sass/util.rb', line 577
def jruby_version
@jruby_version ||= ::JRUBY_VERSION.split(".").map {|s| s.to_i}
end
|
#json_escape_string(s) ⇒ String
Escapes certain characters so that the result can be used as the JSON string value. Returns the original string if no escaping is necessary.
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 |
# File 'lib/sass/util.rb', line 891
def json_escape_string(s)
return s if s !~ /["\\\b\f\n\r\t]/
result = ""
s.split("").each do |c|
case c
when '"', "\\"
result << "\\" << c
when "\n" then result << "\\n"
when "\t" then result << "\\t"
when "\r" then result << "\\r"
when "\f" then result << "\\f"
when "\b" then result << "\\b"
else
result << c
end
end
result
end
|
#json_value_of(v) ⇒ String
Converts the argument into a valid JSON value.
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 |
# File 'lib/sass/util.rb', line 915
def json_value_of(v)
case v
when Integer
v.to_s
when String
"\"" + json_escape_string(v) + "\""
when Array
"[" + v.map {|x| json_value_of(x)}.join(",") + "]"
when NilClass
"null"
when TrueClass
"true"
when FalseClass
"false"
else
raise ArgumentError.new("Unknown type: #{v.class.name}")
end
end
|
#lcs(x, y) {|a, b| ... } ⇒ Array
Computes a single longest common subsequence for x
and y
.
If there are more than one longest common subsequences,
the one returned is that which starts first in x
.
289 290 291 292 293 294 |
# File 'lib/sass/util.rb', line 289
def lcs(x, y, &block)
x = [nil, *x]
y = [nil, *y]
block ||= proc {|a, b| a == b && a}
lcs_backtrace(lcs_table(x, y, &block), x, y, x.size - 1, y.size - 1, &block)
end
|
#map_hash(hash) {|key, value| ... } ⇒ Hash
Maps the key-value pairs of a hash according to a block.
88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/sass/util.rb', line 88
def map_hash(hash)
# Copy and modify is more performant than mapping to an array and using
# to_hash on the result.
rv = hash.class.new
hash.each do |k, v|
new_key, new_value = yield(k, v)
new_key = hash.denormalize(new_key) if hash.is_a?(NormalizedMap) && new_key == k
rv[new_key] = new_value
end
rv
end
|
#map_keys(hash) {|key| ... } ⇒ Hash
Maps the keys in a hash according to a block.
48 49 50 |
# File 'lib/sass/util.rb', line 48
def map_keys(hash)
map_hash(hash) {|k, v| [yield(k), v]}
end
|
#map_vals(hash) {|value| ... } ⇒ Hash
Maps the values in a hash according to a block.
64 65 66 67 68 69 70 71 72 73 |
# File 'lib/sass/util.rb', line 64
def map_vals(hash)
# We don't delegate to map_hash for performance here
# because map_hash does more than is necessary.
rv = hash.class.new
hash = hash.as_stored if hash.is_a?(NormalizedMap)
hash.each do |k, v|
rv[k] = yield(v)
end
rv
end
|
#max(val1, val2)
Returns the maximum of val1
and val2
. We use this over Array.max to
avoid unnecessary garbage collection.
323 324 325 |
# File 'lib/sass/util.rb', line 323
def max(val1, val2)
val1 > val2 ? val1 : val2
end
|
#merge_adjacent_strings(arr) ⇒ Array
Concatenates all strings that are adjacent in an array, while leaving other elements as they are.
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'lib/sass/util.rb', line 155
def merge_adjacent_strings(arr)
# Optimize for the common case of one element
return arr if arr.size < 2
arr.inject([]) do |a, e|
if e.is_a?(String)
if a.last.is_a?(String)
a.last << e
else
a << e.dup
end
else
a << e
end
a
end
end
|
#min(val1, val2)
Returns the minimum of val1
and val2
. We use this over Array.min to
avoid unnecessary garbage collection.
329 330 331 |
# File 'lib/sass/util.rb', line 329
def min(val1, val2)
val1 <= val2 ? val1 : val2
end
|
#pathname(path) ⇒ Pathname
Like Pathname.new
, but normalizes Windows paths to always use backslash
separators.
Pathname#relative_path_from
can break if the two pathnames aren't
consistent in their slash style.
601 602 603 604 |
# File 'lib/sass/util.rb', line 601
def pathname(path)
path = path.tr("/", "\\") if windows?
Pathname.new(path)
end
|
#paths(arrs) ⇒ Array<Arrays>
Return an array of all possible paths through the given arrays.
272 273 274 275 276 |
# File 'lib/sass/util.rb', line 272
def paths(arrs)
arrs.inject([[]]) do |paths, arr|
arr.map {|e| paths.map {|path| path + [e]}}.flatten(1)
end
end
|
#powerset(arr) ⇒ Set<Set>
Computes the powerset of the given array. This is the set of all subsets of the array.
108 109 110 111 112 113 114 115 116 117 |
# File 'lib/sass/util.rb', line 108
def powerset(arr)
arr.inject([Set.new].to_set) do |powerset, el|
new_powerset = Set.new
powerset.each do |subset|
new_powerset << subset
new_powerset << subset + [el]
end
new_powerset
end
end
|
#rails_env ⇒ String?
Returns the environment of the Rails application,
if this is running in a Rails context.
Returns nil
if no such environment is defined.
495 496 497 498 499 |
# File 'lib/sass/util.rb', line 495
def rails_env
return ::Rails.env.to_s if defined?(::Rails.env)
return RAILS_ENV.to_s if defined?(RAILS_ENV)
nil
end
|
#rails_root ⇒ String?
Returns the root of the Rails application,
if this is running in a Rails context.
Returns nil
if no such root is defined.
481 482 483 484 485 486 487 488 |
# File 'lib/sass/util.rb', line 481
def rails_root
if defined?(::Rails.root)
return ::Rails.root.to_s if ::Rails.root
raise "ERROR: Rails.root is nil!"
end
return RAILS_ROOT.to_s if defined?(RAILS_ROOT)
nil
end
|
#rbx? ⇒ Boolean
Whether or not this is running on Rubinius.
561 562 563 564 |
# File 'lib/sass/util.rb', line 561
def rbx?
return @rbx if defined?(@rbx)
@rbx = RUBY_ENGINE == "rbx"
end
|
#realpath(path) ⇒ Pathname
Returns path
with all symlinks resolved.
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 |
# File 'lib/sass/util.rb', line 622
def realpath(path)
path = Pathname.new(path) unless path.is_a?(Pathname)
# Explicitly DON'T run #pathname here. We don't want to convert
# to Windows directory separators because we're comparing these
# against the paths returned by Listen, which use forward
# slashes everywhere.
begin
path.realpath
rescue SystemCallError
# If [path] doesn't actually exist, don't bail, just
# return the original.
path
end
end
|
#relative_path_from(path, from) ⇒ Pathname?
Returns path
relative to from
.
This is like Pathname#relative_path_from
except it accepts both strings
and pathnames, it handles Windows path separators correctly, and it throws
an error rather than crashing if the paths use different encodings
(https://github.com/ruby/ruby/pull/713).
648 649 650 651 652 653 654 655 656 657 658 |
# File 'lib/sass/util.rb', line 648
def relative_path_from(path, from)
pathname(path.to_s).relative_path_from(pathname(from.to_s))
rescue NoMethodError => e
raise e unless e.name == :zero?
# Work around https://github.com/ruby/ruby/pull/713.
path = path.to_s
from = from.to_s
raise ArgumentError("Incompatible path encodings: #{path.inspect} is #{path.encoding}, " +
"#{from.inspect} is #{from.encoding}")
end
|
#replace_subseq(arr, subseq, replacement) ⇒ Array
Non-destructively replaces all occurrences of a subsequence in an array with another subsequence.
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/sass/util.rb', line 183
def replace_subseq(arr, subseq, replacement)
new = []
matched = []
i = 0
arr.each do |elem|
if elem != subseq[i]
new.push(*matched)
matched = []
i = 0
new << elem
next
end
if i == subseq.length - 1
matched = []
i = 0
new.push(*replacement)
else
matched << elem
i += 1
end
end
new.push(*matched)
new
end
|
#restrict(value, range) ⇒ Numeric
Restricts a number to falling within a given range. Returns the number if it falls within the range, or the closest value in the range if it doesn't.
126 127 128 |
# File 'lib/sass/util.rb', line 126
def restrict(value, range)
[[value, range.first].max, range.last].min
end
|
#retry_on_windows { ... }
Retries a filesystem operation if it fails on Windows. Windows has weird and flaky locking rules that can cause operations to fail.
678 679 680 681 682 683 684 685 686 687 |
# File 'lib/sass/util.rb', line 678
def retry_on_windows
return yield unless windows?
begin
yield
rescue SystemCallError
sleep 0.1
yield
end
end
|
#round(value) ⇒ Numeric
Like [Fixnum.round], but leaves rooms for slight floating-point differences.
135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/sass/util.rb', line 135
def round(value)
# If the number is within epsilon of X.5, round up (or down for negative
# numbers).
mod = value % 1
mod_is_half = (mod - 0.5).abs < Script::Value::Number.epsilon
if value > 0
!mod_is_half && mod < 0.5 ? value.floor : value.ceil
else
mod_is_half || mod < 0.5 ? value.floor : value.ceil
end
end
|
#ruby2_4? ⇒ Boolean
Whether or not this is running under Ruby 2.4 or higher.
713 714 715 716 717 718 719 720 721 |
# File 'lib/sass/util.rb', line 713
def ruby2_4?
return @ruby2_4 if defined?(@ruby2_4)
@ruby2_4 =
if RUBY_VERSION_COMPONENTS[0] == 2
RUBY_VERSION_COMPONENTS[1] >= 4
else
RUBY_VERSION_COMPONENTS[0] > 2
end
end
|
#sass_warn(msg)
The same as Kernel#warn
, but is silenced by #silence_sass_warnings.
470 471 472 |
# File 'lib/sass/util.rb', line 470
def sass_warn(msg)
Sass.logger.warn("#{msg}\n")
end
|
#scope(file) ⇒ String
Returns the path of a file relative to the Sass root directory.
32 33 34 |
# File 'lib/sass/util.rb', line 32
def scope(file)
File.join(Sass::ROOT_DIR, file)
end
|
#silence_sass_warnings { ... }
Silences all Sass warnings within a block.
460 461 462 463 464 465 |
# File 'lib/sass/util.rb', line 460
def silence_sass_warnings
old_level, Sass.logger.log_level = Sass.logger.log_level, :error
yield
ensure
Sass.logger.log_level = old_level
end
|
#slice_by(enum)
219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/sass/util.rb', line 219
def slice_by(enum)
results = []
enum.each do |value|
key = yield(value)
if !results.empty? && results.last.first == key
results.last.last << value
else
results << [key, [value]]
end
end
results
end
|
#sourcemap_name(css) ⇒ String
Builds a sourcemap file name given the generated CSS file name.
881 882 883 |
# File 'lib/sass/util.rb', line 881
def sourcemap_name(css)
css + ".map"
end
|
#strip_string_array(arr) ⇒ Array
Destructively strips whitespace from the beginning and end of the first and last elements, respectively, in the array (if those elements are strings).
255 256 257 258 259 |
# File 'lib/sass/util.rb', line 255
def strip_string_array(arr)
arr.first.lstrip! if arr.first.is_a?(String)
arr.last.rstrip! if arr.last.is_a?(String)
arr
end
|
#subsequence?(seq1, seq2) ⇒ Boolean
Returns whether or not seq1
is a subsequence of seq2
. That is, whether
or not seq2
contains every element in seq1
in the same order (and
possibly more elements besides).
374 375 376 377 378 379 380 381 382 |
# File 'lib/sass/util.rb', line 374
def subsequence?(seq1, seq2)
i = j = 0
loop do
return true if i == seq1.size
return false if j == seq2.size
i += 1 if seq1[i] == seq2[j]
j += 1
end
end
|
#substitute(ary, from, to)
Substitutes a sub-array of one array with another sub-array.
237 238 239 240 241 242 243 244 245 246 247 |
# File 'lib/sass/util.rb', line 237
def substitute(ary, from, to)
res = ary.dup
i = 0
while i < res.size
if res[i...i + from.size] == from
res[i...i + from.size] = to
end
i += 1
end
res
end
|
#undefined_conversion_error_char(e) ⇒ String
Returns a string description of the character that caused an
Encoding::UndefinedConversionError
.
338 339 340 341 342 343 344 345 |
# File 'lib/sass/util.rb', line 338
def undefined_conversion_error_char(e)
# Rubinius (as of 2.0.0.rc1) pre-quotes the error character.
return e.error_char if rbx?
# JRuby (as of 1.7.2) doesn't have an error_char field on
# Encoding::UndefinedConversionError.
return e.error_char.dump unless jruby?
e.message[/^"[^"]+"/] # "
end
|
#upcase(string)
Like String.upcase
, but only ever upcases ASCII letters.
297 298 299 300 |
# File 'lib/sass/util.rb', line 297
def upcase(string)
return string.upcase unless ruby2_4?
string.upcase(:ascii)
end
|
#version_geq(v1, v2) ⇒ Boolean
Returns whether one version string represents the same or a more recent version than another.
434 435 436 |
# File 'lib/sass/util.rb', line 434
def version_geq(v1, v2)
version_gt(v1, v2) || !version_gt(v2, v1)
end
|
#version_gt(v1, v2) ⇒ Boolean
Returns whether one version string represents a more recent version than another.
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'lib/sass/util.rb', line 405
def version_gt(v1, v2)
# Construct an array to make sure the shorter version is padded with nil
Array.new([v1.length, v2.length].max).zip(v1.split("."), v2.split(".")) do |_, p1, p2|
p1 ||= "0"
p2 ||= "0"
release1 = p1 =~ /^[0-9]+$/
release2 = p2 =~ /^[0-9]+$/
if release1 && release2
# Integer comparison if both are full releases
p1, p2 = p1.to_i, p2.to_i
next if p1 == p2
return p1 > p2
elsif !release1 && !release2
# String comparison if both are prereleases
next if p1 == p2
return p1 > p2
else
# If only one is a release, that one is newer
return release1
end
end
end
|
#windows? ⇒ Boolean
Whether or not this is running on Windows.
545 546 547 548 |
# File 'lib/sass/util.rb', line 545
def windows?
return @windows if defined?(@windows)
@windows = (RbConfig::CONFIG['host_os'] =~ /mswin|windows|mingw/i)
end
|
#with_extracted_values(arr) {|str| ... } ⇒ Array
Allows modifications to be performed on the string form of an array containing both strings and non-strings.
871 872 873 874 875 |
# File 'lib/sass/util.rb', line 871
def with_extracted_values(arr)
str, vals = extract_values(arr)
str = yield str
inject_values(str, vals)
end
|