sasso-rails 0.1.3 → 0.1.4
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 +23 -1
- data/lib/sasso/rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 906b842a73c7016c0682b5f414faab3416d11bcaff07b3b4a5b26da3faab1a61
|
|
4
|
+
data.tar.gz: dc2b535f1e451ab474767bd9249241166198ddd5fef17ec540e3a684040802cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e96e0f66238e73d3889a180f749356c14907c7c643b08a0b4fb5a62d2c5e88e98db5a6a79bc6b821c9dc9e2246bc462b2a96d6f72b18797946422a9b259f0e05
|
|
7
|
+
data.tar.gz: fe8c449eaf6ee9d337fdff94ed65d5d5330d011751855482cacd53d95af9652f6873151db02d1e778252847cd349acc0d0d562943c984cb3c675d0acb40decf7
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,21 @@ the engine-gem version range it requires.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.1.4] - 2026-06-15
|
|
12
|
+
|
|
13
|
+
Requires the `sasso` gem **>= 0.2.3** (was `>= 0.2.0`).
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Bumped the `sasso` engine-gem floor to **>= 0.2.3**, which pulls in two
|
|
18
|
+
dart-sass parity fixes contributed upstream by @shyim:
|
|
19
|
+
- **`!default` no longer evaluates its right-hand side when the variable is
|
|
20
|
+
already set.** This fixes a spurious "incompatible units" error seen in
|
|
21
|
+
Bootstrap-on-Shopware setups.
|
|
22
|
+
- **Legacy `rgb()`/`hsl()` preserve the caller's `rgba`/`hsla` spelling in
|
|
23
|
+
special-value passthroughs** (e.g. `rgba(var(--bs-body-color-rgb), …)`),
|
|
24
|
+
which Bootstrap relies on.
|
|
25
|
+
|
|
11
26
|
## [0.1.3] - 2026-06-14
|
|
12
27
|
|
|
13
28
|
### Fixed
|
data/README.md
CHANGED
|
@@ -17,6 +17,28 @@ Why this gem over the alternatives:
|
|
|
17
17
|
directly through the native extension — no process spawn, no IPC.
|
|
18
18
|
- **Pure Rust core.** No libsass (deprecated), no Dart VM.
|
|
19
19
|
|
|
20
|
+
## Compatibility
|
|
21
|
+
|
|
22
|
+
- **Ruby** ≥ 3.1.
|
|
23
|
+
- **Rails** ≥ 7.0 (`railties >= 7.0`), on **either** asset pipeline. Verified
|
|
24
|
+
end-to-end (`generate sasso:install` → `sasso:build` → production
|
|
25
|
+
`assets:precompile` → served CSS) on:
|
|
26
|
+
|
|
27
|
+
| Rails | Asset pipeline | Status |
|
|
28
|
+
|--------|------------------------------------------------------|---------------------|
|
|
29
|
+
| 8.x | Propshaft (the Rails 8 default) | ✅ primary path |
|
|
30
|
+
| 7.1+ | Propshaft (`rails new --asset-pipeline=propshaft`) | ✅ |
|
|
31
|
+
| 7.0 | Sprockets (the Rails 7.0 default) | ✅ (since **0.1.3**) |
|
|
32
|
+
|
|
33
|
+
On **Propshaft** sasso compiles to `app/assets/builds/` and Propshaft serves
|
|
34
|
+
it (Propshaft performs no Sass step of its own). On **Sprockets** the installer
|
|
35
|
+
links that builds directory into the manifest **and** disables Sprockets' own
|
|
36
|
+
`.scss` handling, so `assets:precompile` deploys cleanly without `sassc`/
|
|
37
|
+
libsass (this last part is the 0.1.3 fix — earlier versions crashed
|
|
38
|
+
`assets:precompile` on a default Sprockets app; see the changelog). Either way
|
|
39
|
+
the compiler is the pure-Rust `sasso` native gem — no Node, no Dart, no
|
|
40
|
+
subprocess.
|
|
41
|
+
|
|
20
42
|
## Installation
|
|
21
43
|
|
|
22
44
|
```ruby
|
|
@@ -134,7 +156,7 @@ $ bundle lock --add-platform x86_64-linux aarch64-linux \
|
|
|
134
156
|
## Versioning
|
|
135
157
|
|
|
136
158
|
This gem versions independently of the `sasso` compiler gem and pins it with a
|
|
137
|
-
range (`sasso >= 0.
|
|
159
|
+
range (`sasso >= 0.2.3, < 1`). An app may pin a specific compiler version in its
|
|
138
160
|
own `Gemfile`.
|
|
139
161
|
|
|
140
162
|
## License
|
data/lib/sasso/rails/version.rb
CHANGED
|
@@ -5,6 +5,6 @@ module Sasso
|
|
|
5
5
|
# Versioned INDEPENDENTLY of both the `sasso` gem and the `sasso` crate.
|
|
6
6
|
# The gemspec pins the engine gem with a range (sasso >= 0.1.1, < 1), so a
|
|
7
7
|
# compiler bump does not force a lockstep release of this integration gem.
|
|
8
|
-
VERSION = "0.1.
|
|
8
|
+
VERSION = "0.1.4"
|
|
9
9
|
end
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sasso-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
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: railties
|
|
@@ -30,7 +30,7 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.2.
|
|
33
|
+
version: 0.2.3
|
|
34
34
|
- - "<"
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
36
|
version: '1'
|
|
@@ -40,7 +40,7 @@ dependencies:
|
|
|
40
40
|
requirements:
|
|
41
41
|
- - ">="
|
|
42
42
|
- !ruby/object:Gem::Version
|
|
43
|
-
version: 0.2.
|
|
43
|
+
version: 0.2.3
|
|
44
44
|
- - "<"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '1'
|