sass-embedded 1.74.1-riscv64-linux-android
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.md +48 -0
- data/exe/sass +21 -0
- data/ext/sass/cli.rb +12 -0
- data/ext/sass/dart-sass/sass +20 -0
- data/ext/sass/dart-sass/src/LICENSE +1687 -0
- data/ext/sass/dart-sass/src/dart +0 -0
- data/ext/sass/dart-sass/src/sass.snapshot +0 -0
- data/ext/sass/embedded_sass_pb.rb +63 -0
- data/lib/sass/calculation_value/calculation_operation.rb +49 -0
- data/lib/sass/calculation_value.rb +22 -0
- data/lib/sass/canonicalize_context.rb +21 -0
- data/lib/sass/compile_result.rb +24 -0
- data/lib/sass/compiler/channel.rb +68 -0
- data/lib/sass/compiler/connection.rb +92 -0
- data/lib/sass/compiler/dispatcher.rb +115 -0
- data/lib/sass/compiler/host/function_registry.rb +87 -0
- data/lib/sass/compiler/host/importer_registry.rb +137 -0
- data/lib/sass/compiler/host/logger_registry.rb +55 -0
- data/lib/sass/compiler/host/protofier.rb +390 -0
- data/lib/sass/compiler/host/structifier.rb +37 -0
- data/lib/sass/compiler/host.rb +226 -0
- data/lib/sass/compiler/varint.rb +39 -0
- data/lib/sass/compiler.rb +212 -0
- data/lib/sass/elf.rb +276 -0
- data/lib/sass/embedded/version.rb +7 -0
- data/lib/sass/embedded.rb +107 -0
- data/lib/sass/embedded_protocol.rb +10 -0
- data/lib/sass/exception.rb +69 -0
- data/lib/sass/fork_tracker.rb +51 -0
- data/lib/sass/logger/silent.rb +28 -0
- data/lib/sass/logger/source_location.rb +22 -0
- data/lib/sass/logger/source_span.rb +28 -0
- data/lib/sass/node_package_importer.rb +17 -0
- data/lib/sass/serializer.rb +36 -0
- data/lib/sass/value/argument_list.rb +37 -0
- data/lib/sass/value/boolean.rb +52 -0
- data/lib/sass/value/calculation.rb +90 -0
- data/lib/sass/value/color.rb +253 -0
- data/lib/sass/value/function.rb +51 -0
- data/lib/sass/value/fuzzy_math.rb +80 -0
- data/lib/sass/value/list.rb +79 -0
- data/lib/sass/value/map.rb +71 -0
- data/lib/sass/value/mixin.rb +36 -0
- data/lib/sass/value/null.rb +48 -0
- data/lib/sass/value/number/unit.rb +186 -0
- data/lib/sass/value/number.rb +366 -0
- data/lib/sass/value/string.rb +61 -0
- data/lib/sass/value.rb +136 -0
- data/lib/sass-embedded.rb +4 -0
- metadata +120 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b211371ee3d27ee73ad28298ce4f0d4869981781382f96f1aacf112e45c61973
|
4
|
+
data.tar.gz: '08a49e2ec576b2948bfdebfc806cc1cd869b657bdb8b5e6fdc4403588c44fbb0'
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5962eed9d33aa9100798d7ce12a237182e6f2cc98524ac0f1367bc02e5b8d2db159bfa841357d4b26bc6376ca6dcdad21b4c4a65646d8d08a44043fe1f2c0fed
|
7
|
+
data.tar.gz: 9d677439c76a9e0440fe1353fbbe18bbafa0d341905a8cd9fec024a9a5678965f35b7ce61109260d321f7c7c4ba0ae3f09631db73b5a4e35e10e3c95dfa2eb81
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2022, なつき
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# Embedded Sass Host for Ruby
|
2
|
+
|
3
|
+
[![build](https://github.com/sass-contrib/sass-embedded-host-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/sass-contrib/sass-embedded-host-ruby/actions/workflows/build.yml)
|
4
|
+
[![gem](https://badge.fury.io/rb/sass-embedded.svg)](https://rubygems.org/gems/sass-embedded)
|
5
|
+
|
6
|
+
This is a Ruby library that implements the host side of the [Embedded Sass protocol](https://github.com/sass/sass/blob/HEAD/spec/embedded-protocol.md).
|
7
|
+
|
8
|
+
It exposes a Ruby API for Sass that's backed by a native [Dart Sass](https://sass-lang.com/dart-sass) executable.
|
9
|
+
|
10
|
+
## Install
|
11
|
+
|
12
|
+
``` sh
|
13
|
+
gem install sass-embedded
|
14
|
+
```
|
15
|
+
|
16
|
+
## Usage
|
17
|
+
|
18
|
+
The Ruby API provides two entrypoints for compiling Sass to CSS.
|
19
|
+
|
20
|
+
- `Sass.compile` takes a path to a Sass file and return the result of compiling that file to CSS.
|
21
|
+
|
22
|
+
``` ruby
|
23
|
+
require 'sass-embedded'
|
24
|
+
|
25
|
+
result = Sass.compile('style.scss')
|
26
|
+
puts result.css
|
27
|
+
|
28
|
+
compressed = Sass.compile('style.scss', style: :compressed)
|
29
|
+
puts compressed.css
|
30
|
+
```
|
31
|
+
|
32
|
+
- `Sass.compile_string` takes a string that represents the contents of a Sass file and return the result of compiling that file to CSS.
|
33
|
+
|
34
|
+
``` ruby
|
35
|
+
require 'sass-embedded'
|
36
|
+
|
37
|
+
result = Sass.compile_string('h1 { font-size: 40px; }')
|
38
|
+
puts result.css
|
39
|
+
|
40
|
+
compressed = Sass.compile_string('h1 { font-size: 40px; }', style: :compressed)
|
41
|
+
puts compressed.css
|
42
|
+
```
|
43
|
+
|
44
|
+
See [rubydoc.info/gems/sass-embedded/Sass](https://rubydoc.info/gems/sass-embedded/Sass) for full API documentation.
|
45
|
+
|
46
|
+
---
|
47
|
+
|
48
|
+
Disclaimer: this is not an official Google product.
|
data/exe/sass
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require_relative '../ext/sass/cli'
|
5
|
+
|
6
|
+
module Sass
|
7
|
+
# The `sass` command line interface
|
8
|
+
class CLI
|
9
|
+
begin
|
10
|
+
Kernel.exec(*COMMAND, *ARGV)
|
11
|
+
rescue Errno::ENOENT
|
12
|
+
require_relative '../lib/sass/elf'
|
13
|
+
|
14
|
+
raise if ELF::INTERPRETER.nil?
|
15
|
+
|
16
|
+
Kernel.exec(ELF::INTERPRETER, *COMMAND, *ARGV)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
private_constant :CLI
|
21
|
+
end
|
data/ext/sass/cli.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
# This script drives the standalone dart-sass package, which bundles together a
|
4
|
+
# Dart executable and a snapshot of dart-sass.
|
5
|
+
|
6
|
+
follow_links() {
|
7
|
+
# Use `readlink -f` if it exists, but fall back to manually following symlnks
|
8
|
+
# for systems (like older Mac OS) where it doesn't.
|
9
|
+
file="$1"
|
10
|
+
if readlink -f "$file" 2>&-; then return; fi
|
11
|
+
|
12
|
+
while [ -h "$file" ]; do
|
13
|
+
file="$(readlink "$file")"
|
14
|
+
done
|
15
|
+
echo "$file"
|
16
|
+
}
|
17
|
+
|
18
|
+
# Unlike $0, $BASH_SOURCE points to the absolute path of this file.
|
19
|
+
path=`dirname "$(follow_links "$0")"`
|
20
|
+
exec "$path/src/dart" "$path/src/sass.snapshot" "$@"
|