sasso 0.2.5-x86_64-linux → 0.2.7-x86_64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b63e9e41947c3eef38eb7c3dc46f250fe52e19930eff0949d702dff6126b5ec3
4
- data.tar.gz: 629666e3105582568a37a28ced4d0975505d9351e8843c9808a6096ac44c443c
3
+ metadata.gz: 91cbaf5bd897cbece2019bbdb57335b0323b24ed6a0ad40ac57ab212397f3722
4
+ data.tar.gz: 870cd5783a4e90c0c4076e9ac08bda84ca22b2e0749408e329ba77478f8e0d15
5
5
  SHA512:
6
- metadata.gz: 17450c48b046a27f052e913ef3739b26cbff4977da9ddbff53408b1b23e83d7ac0ad099046881187d0be1613f4c350e47067e24288e31e562b6d277585938913
7
- data.tar.gz: a62eb1f1c68e7c3d8a2a0752d910999f0461a437baa3a59fe27fa9b183806838a61c1e716bede61c5dec0afe13c02e76a608193132d57e8d630a28d2307eb355
6
+ metadata.gz: 04a6e6b4568373e90f5dff566759063e6fc5a8f4307525b59ff005a62bb9de5228d65300f7c912ff4831a8954a3cb5a10feb0019b2966b7d791591f8e29abbb1
7
+ data.tar.gz: 2a44fb96b4f1d89ac68ba19b1805894949848467955978b66e877d16a03a8658985ef14af031daf819979a645e681900ce6f170c3ced20cfb35533c0c9ace32f
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
- In-process **SCSS / Sass → CSS** compilation for Ruby, backed by
4
- [**sasso**](https://github.com/momiji-rs/sasso) — a pure-Rust, dependency-free
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
+ [![Gem Version](https://badge.fury.io/rb/sasso.svg?icon=si%3Arubygems)](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
Binary file
Binary file
Binary file
Binary file
data/lib/sasso/version.rb CHANGED
@@ -3,5 +3,5 @@
3
3
  module Sasso
4
4
  # The gem version floats INDEPENDENTLY of the core `sasso` crate version; the
5
5
  # native extension pins the crate exactly (ext/sasso/Cargo.toml: sasso = "=…").
6
- VERSION = "0.2.5"
6
+ VERSION = "0.2.7"
7
7
  end
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.5
4
+ version: 0.2.7
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - momiji-rs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-16 00:00:00.000000000 Z
11
+ date: 2026-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake