sasso 0.2.5-aarch64-linux → 0.2.7-aarch64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -0
- data/README.md +3 -6
- data/lib/sasso/3.1/sasso.so +0 -0
- data/lib/sasso/3.2/sasso.so +0 -0
- data/lib/sasso/3.3/sasso.so +0 -0
- data/lib/sasso/3.4/sasso.so +0 -0
- data/lib/sasso/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: afa936103e7f520de2b2f78e3d709a18b263ccd5e41c23ea50c1a6d66c11af4d
|
|
4
|
+
data.tar.gz: 13aa8cc441c37bb9a22bd1175e842775bb7beb3192d3f00408826512bd105f7f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aad4c08cec3c4555d36e7f7ce492e6ad1f9d767b5ed436464a75048a8b6db4be71198d93d4df9a607a88404178dd2130d49313ec3a2c338f85005b878b50dcaf
|
|
7
|
+
data.tar.gz: a4bd4255dd68ac2948de8ba26d5c68e0a5b0805d7ad2ac0d5aa5d51cdc928d380cee11933426360d07750177a5dcd2cff4b73ecf1a8f20695b990704a3894688
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,29 @@ notes the exact core crate version it pins.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.2.7] - 2026-06-25
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Adopt core **sasso 0.6.3** (recompile-only; the gem's Ruby API is unchanged).
|
|
16
|
+
`Sasso.compile`/`Sasso.compile_string` now return the serialized stylesheet
|
|
17
|
+
with **no trailing newline**, byte-for-byte matching dart-sass's library API
|
|
18
|
+
(`sass` embedded / `compileString().css`). Previously expanded output carried
|
|
19
|
+
a stray trailing newline; compressed output is unchanged (it never had one).
|
|
20
|
+
If you write the result straight to a `.css` file and want the conventional
|
|
21
|
+
trailing newline, append `"\n"` yourself (most asset pipelines already do).
|
|
22
|
+
|
|
23
|
+
## [0.2.6] - 2026-06-25
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- Adopt core **sasso 0.6.2** (recompile-only; the gem's Ruby API is unchanged).
|
|
28
|
+
Picks up the upstream fix where **compressed** output now emits the shortest
|
|
29
|
+
equivalent legacy-color form, matching dart-sass 1.101.0. A computed color such
|
|
30
|
+
as `darken(#336699, 10%)` now compiles to `hsl(210,50%,30%)` instead of the
|
|
31
|
+
longer `rgb(38.25,76.5,114.75)`, and an integer-rgb-equivalent hsl literal
|
|
32
|
+
(`hsl(210, 50%, 40%)`) collapses to `#369`. Expanded output is unchanged.
|
|
33
|
+
|
|
11
34
|
## [0.2.5] - 2026-06-16
|
|
12
35
|
|
|
13
36
|
### Changed
|
data/README.md
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
# sasso (Ruby)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
dart-sass alternative that targets **byte-for-byte parity** with current
|
|
6
|
-
dart-sass. Shipped as a native extension (Rust via [magnus](https://github.com/matsadler/magnus)
|
|
7
|
-
+ [rb-sys](https://github.com/oxidize-rb/rb-sys)); no Node, no subprocess, no
|
|
8
|
-
Dart VM.
|
|
3
|
+
[](https://badge.fury.io/rb/sasso)
|
|
4
|
+
|
|
5
|
+
In-process **SCSS / Sass → CSS** compilation for Ruby, backed by [**sasso**](https://github.com/momiji-rs/sasso) — a pure-Rust, dependency-free dart-sass alternative that targets **byte-for-byte parity** with current dart-sass. Shipped as a native extension (Rust via [magnus](https://github.com/matsadler/magnus) + [rb-sys](https://github.com/oxidize-rb/rb-sys)); no Node, no subprocess, no Dart VM.
|
|
9
6
|
|
|
10
7
|
> This gem is the Ruby binding. The compiler core lives in the separate
|
|
11
8
|
> [`momiji-rs/sasso`](https://github.com/momiji-rs/sasso) repo (crate on
|
data/lib/sasso/3.1/sasso.so
CHANGED
|
Binary file
|
data/lib/sasso/3.2/sasso.so
CHANGED
|
Binary file
|
data/lib/sasso/3.3/sasso.so
CHANGED
|
Binary file
|
data/lib/sasso/3.4/sasso.so
CHANGED
|
Binary file
|
data/lib/sasso/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sasso
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- momiji-rs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|