sasso 0.2.2-arm64-darwin → 0.2.3-arm64-darwin
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 +15 -0
- data/README.md +11 -0
- data/lib/sasso/3.1/sasso.bundle +0 -0
- data/lib/sasso/3.2/sasso.bundle +0 -0
- data/lib/sasso/3.3/sasso.bundle +0 -0
- data/lib/sasso/3.4/sasso.bundle +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: 010f68627811ea9ed3230f12c8d98382cd59ba2c755d0172ac4089d779ba6e07
|
|
4
|
+
data.tar.gz: 041f587b307a5ab0aafac8a91b8e51bf419b23048ee40f9b5caacda411cf3ad4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 807eaf86c09075be65b63f169d9e880d5864ec8ebb1a6837cdc708e85f3e884a8644154b8c2408a29a4be0b479b66e1a9a6e7d76a1762024d3cf7aa554d51b74
|
|
7
|
+
data.tar.gz: 03fbd67a38a4fdc686623267aca90a474abddf2ab0dff71fe8737d79b5ee2ba8027818b7c055b7da82034f7d53e9868727c5699537f5de0a39a5ed9fe1a49eb0
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,21 @@ notes the exact core crate version it pins.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.2.3] - 2026-06-15
|
|
12
|
+
|
|
13
|
+
Adopts core crate **v0.5.3**.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Via core v0.5.3: a `!default` assignment no longer evaluates its right-hand
|
|
18
|
+
side when the variable already holds a non-null value (dart-sass
|
|
19
|
+
short-circuits first), fixing a spurious "incompatible units" error in
|
|
20
|
+
Bootstrap-on-Shopware setups.
|
|
21
|
+
- Via core v0.5.3: legacy `rgb()`/`hsl()` now preserve the caller's
|
|
22
|
+
`rgba`/`hsla` spelling in special-value passthroughs (e.g.
|
|
23
|
+
`rgba(var(--bs-body-color-rgb), …)`), matching dart-sass instead of
|
|
24
|
+
normalizing the name down to `rgb`/`hsl`.
|
|
25
|
+
|
|
11
26
|
## [0.2.2] - 2026-06-14
|
|
12
27
|
|
|
13
28
|
Adopts core crate **v0.5.2**.
|
data/README.md
CHANGED
|
@@ -70,6 +70,17 @@ rescue Sasso::CompileError => e
|
|
|
70
70
|
end
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
## Framework integrations
|
|
74
|
+
|
|
75
|
+
Using a Ruby web framework? These drop-in gems build on this one and compile
|
|
76
|
+
your Sass/SCSS **in-process** (no Node, no Dart, no subprocess), byte-for-byte
|
|
77
|
+
identical to dart-sass — typically ~6–7× faster per compile than the Node `sass`
|
|
78
|
+
default:
|
|
79
|
+
|
|
80
|
+
- **Rails** (Propshaft + Sprockets) — [`sasso-rails`](https://github.com/momiji-rs/sasso-rails)
|
|
81
|
+
- **Bridgetown** — [`bridgetown-sasso`](https://github.com/momiji-rs/bridgetown-sasso)
|
|
82
|
+
- **Hanami** (2.1+) — [`hanami-sasso`](https://github.com/momiji-rs/hanami-sasso)
|
|
83
|
+
|
|
73
84
|
## Conformance
|
|
74
85
|
|
|
75
86
|
The core passes **100% of the *attempted* official sass-spec suite**
|
data/lib/sasso/3.1/sasso.bundle
CHANGED
|
Binary file
|
data/lib/sasso/3.2/sasso.bundle
CHANGED
|
Binary file
|
data/lib/sasso/3.3/sasso.bundle
CHANGED
|
Binary file
|
data/lib/sasso/3.4/sasso.bundle
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.3
|
|
5
5
|
platform: arm64-darwin
|
|
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-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|