sasso 0.1.0-x64-mingw-ucrt

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9b88a4f67419a5b21807dc1aafea9af64da3625b22f3718ac6b92e92076836b6
4
+ data.tar.gz: 7011a11c574ffcdbccf973826a1b5667c1bf1df1841ffc9773d57b79257c55c6
5
+ SHA512:
6
+ metadata.gz: 6f18cdb1ed41a28e3a4eed9b9246d6816706a2e81533bd385a1dc255fb3cd0335f823c2de2832d20309351158fdfc75971f31ce8cae8b540cb184987f3258307
7
+ data.tar.gz: df673cec80fc7b25db96b30f5dd9091d85c07d4fcb5824d280aa6a5a2a377f67985b3d2bf0054fed0c196581129a4635c1dc650707cd76ea5189c78f1f96d954
data/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ All notable changes to the **sasso** Ruby gem are documented here.
4
+ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5
+
6
+ The gem version floats independently of the `sasso` compiler crate; each release
7
+ notes the exact core crate version it pins.
8
+
9
+ ## [Unreleased]
10
+
11
+ ## [0.1.0] - 2026-06-13
12
+
13
+ Initial release. In-process SCSS/Sass → CSS via a Rust native extension
14
+ (magnus + rb-sys) around the `sasso` crate **v0.3.0**.
15
+
16
+ ### Added
17
+
18
+ - `Sasso.compile_string(source, **opts)` and `Sasso.compile(path, **opts)` →
19
+ CSS String, with `style:`, `syntax:`/`indented:`, `load_paths:`, `url:`, and
20
+ `alert_ascii:` options.
21
+ - `Sasso::CompileError < Sasso::Error < StandardError`, carrying the compiler's
22
+ full diagnostic message.
23
+ - Precompiled native gems for common platforms, with a source-compile fallback.
data/LICENSE-APACHE ADDED
@@ -0,0 +1,200 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but not
32
+ limited to compiled object code, generated documentation, and
33
+ conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean any work of authorship, including the
48
+ original version of the Work and any modifications or additions
49
+ to that Work or Derivative Works thereof, that is intentionally
50
+ submitted to Licensor for inclusion in the Work by the copyright owner
51
+ or by an individual or Legal Entity authorized to submit on behalf of
52
+ the copyright owner. For the purposes of this definition, "submitted"
53
+ means any form of electronic, verbal, or written communication sent
54
+ to the Licensor or its representatives, including but not limited to
55
+ communication on electronic mailing lists, source code control systems,
56
+ and issue tracking systems that are managed by, or on behalf of, the
57
+ Licensor for the purpose of discussing and improving the Work, but
58
+ excluding communication that is conspicuously marked or otherwise
59
+ designated in writing by the copyright owner as "Not a Contribution."
60
+
61
+ "Contributor" shall mean Licensor and any individual or Legal Entity
62
+ on behalf of whom a Contribution has been received by Licensor and
63
+ subsequently incorporated within the Work.
64
+
65
+ 2. Grant of Copyright License. Subject to the terms and conditions of
66
+ this License, each Contributor hereby grants to You a perpetual,
67
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
68
+ copyright license to reproduce, prepare Derivative Works of,
69
+ publicly display, publicly perform, sublicense, and distribute the
70
+ Work and such Derivative Works in Source or Object form.
71
+
72
+ 3. Grant of Patent License. Subject to the terms and conditions of
73
+ this License, each Contributor hereby grants to You a perpetual,
74
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75
+ (except as stated in this section) patent license to make, have made,
76
+ use, offer to sell, sell, import, and otherwise transfer the Work,
77
+ where such license applies only to those patent claims licensable
78
+ by such Contributor that are necessarily infringed by their
79
+ Contribution(s) alone or by combination of their Contribution(s)
80
+ with the Work to which such Contribution(s) was submitted. If You
81
+ institute patent litigation against any entity (including a
82
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
83
+ or a Contribution incorporated within the Work constitutes direct
84
+ or contributory patent infringement, then any patent licenses
85
+ granted to You under this License for that Work shall terminate
86
+ as of the date such litigation is filed.
87
+
88
+ 4. Redistribution. You may reproduce and distribute copies of the
89
+ Work or Derivative Works thereof in any medium, with or without
90
+ modifications, and in Source or Object form, provided that You
91
+ meet the following conditions:
92
+
93
+ (a) You must give any other recipients of the Work or Derivative
94
+ Works a copy of this License; and
95
+
96
+ (b) You must cause any modified files to carry prominent notices
97
+ stating that You changed the files; and
98
+
99
+ (c) You must retain, in the Source form of any Derivative Works
100
+ that You distribute, all copyright, patent, trademark, and
101
+ attribution notices from the Source form of the Work,
102
+ excluding those notices that do not pertain to any part of
103
+ the Derivative Works; and
104
+
105
+ (d) If the Work includes a "NOTICE" text file as part of its
106
+ distribution, then any Derivative Works that You distribute must
107
+ include a readable copy of the attribution notices contained
108
+ within such NOTICE file, excluding those notices that do not
109
+ pertain to any part of the Derivative Works, in at least one
110
+ of the following places: within a NOTICE text file distributed
111
+ as part of the Derivative Works; within the Source form or
112
+ documentation, if provided along with the Derivative Works; or,
113
+ within a display generated by the Derivative Works, if and
114
+ wherever such third-party notices normally appear. The contents
115
+ of the NOTICE file are for informational purposes only and do
116
+ not modify the License. You may add Your own attribution notices
117
+ within Derivative Works that You distribute, alongside or as an
118
+ addendum to the NOTICE text from the Work, provided that such
119
+ additional attribution notices cannot be construed as modifying
120
+ the License.
121
+
122
+ You may add Your own copyright statement to Your modifications and
123
+ may provide additional or different license terms and conditions
124
+ for use, reproduction, or distribution of Your modifications, or
125
+ for any such Derivative Works as a whole, provided Your use,
126
+ reproduction, and distribution of the Work otherwise complies with
127
+ the conditions stated in this License.
128
+
129
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
130
+ any Contribution intentionally submitted for inclusion in the Work
131
+ by You to the Licensor shall be under the terms and conditions of
132
+ this License, without any additional terms or conditions.
133
+ Notwithstanding the above, nothing herein shall supersede or modify
134
+ the terms of any separate license agreement you may have executed
135
+ with Licensor regarding such Contributions.
136
+
137
+ 6. Trademarks. This License does not grant permission to use the trade
138
+ names, trademarks, service marks, or product names of the Licensor,
139
+ except as required for reasonable and customary use in describing the
140
+ origin of the Work and reproducing the content of the NOTICE file.
141
+
142
+ 7. Disclaimer of Warranty. Unless required by applicable law or
143
+ agreed to in writing, Licensor provides the Work (and each
144
+ Contributor provides its Contributions) on an "AS IS" BASIS,
145
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
146
+ implied, including, without limitation, any warranties or conditions
147
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
148
+ PARTICULAR PURPOSE. You are solely responsible for determining the
149
+ appropriateness of using or redistributing the Work and assume any
150
+ risks associated with Your exercise of permissions under this License.
151
+
152
+ 8. Limitation of Liability. In no event and under no legal theory,
153
+ whether in tort (including negligence), contract, or otherwise,
154
+ unless required by applicable law (such as deliberate and grossly
155
+ negligent acts) or agreed to in writing, shall any Contributor be
156
+ liable to You for damages, including any direct, indirect, special,
157
+ incidental, or consequential damages of any character arising as a
158
+ result of this License or out of the use or inability to use the
159
+ Work (including but not limited to damages for loss of goodwill,
160
+ work stoppage, computer failure or malfunction, or any and all
161
+ other commercial damages or losses), even if such Contributor
162
+ has been advised of the possibility of such damages.
163
+
164
+ 9. Accepting Warranty or Additional Liability. While redistributing
165
+ the Work or Derivative Works thereof, You may choose to offer,
166
+ and charge a fee for, acceptance of support, warranty, indemnity,
167
+ or other liability obligations and/or rights consistent with this
168
+ License. However, in accepting such obligations, You may act only
169
+ on Your own behalf and on Your sole responsibility, not on behalf
170
+ of any other Contributor, and only if You agree to indemnify,
171
+ defend, and hold each Contributor harmless for any liability
172
+ incurred by, or claims asserted against, such Contributor by reason
173
+ of your accepting any such warranty or additional liability.
174
+
175
+ END OF TERMS AND CONDITIONS
176
+
177
+ APPENDIX: How to apply the Apache License to your work.
178
+
179
+ To apply the Apache License to your work, attach the following
180
+ boilerplate notice, with the fields enclosed by brackets "[]"
181
+ replaced with your own identifying information. (Don't include
182
+ the brackets!) The text should be enclosed in the appropriate
183
+ comment syntax for the file format. We also recommend that a
184
+ file or class name and description of purpose be included on the
185
+ same "printed page" as the copyright notice for easier
186
+ identification within third-party archives.
187
+
188
+ Copyright 2026 linyiru
189
+
190
+ Licensed under the Apache License, Version 2.0 (the "License");
191
+ you may not use this file except in compliance with the License.
192
+ You may obtain a copy of the License at
193
+
194
+ http://www.apache.org/licenses/LICENSE-2.0
195
+
196
+ Unless required by applicable law or agreed to in writing, software
197
+ distributed under the License is distributed on an "AS IS" BASIS,
198
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
199
+ See the License for the specific language governing permissions and
200
+ limitations under the License.
data/LICENSE-MIT ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 linyiru
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,83 @@
1
+ # sasso (Ruby)
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.
9
+
10
+ > This gem is the Ruby binding. The compiler core lives in the separate
11
+ > [`momiji-rs/sasso`](https://github.com/momiji-rs/sasso) repo (crate on
12
+ > crates.io); this gem pins it exactly and releases on its own cadence.
13
+
14
+ ## Install
15
+
16
+ ```ruby
17
+ # Gemfile
18
+ gem "sasso"
19
+ ```
20
+
21
+ ```console
22
+ $ bundle install
23
+ ```
24
+
25
+ Precompiled native gems ship for common platforms (Linux gnu/musl, macOS, and
26
+ Windows on x86_64/arm64), so no Rust toolchain is needed. On other platforms the
27
+ gem compiles from source via `cargo` (needs a Rust toolchain).
28
+
29
+ ## Usage
30
+
31
+ ```ruby
32
+ require "sasso"
33
+
34
+ Sasso.compile_string("$c: #336699; a { color: $c; &:hover { color: red } }")
35
+ # => "a {\n color: #336699;\n}\na:hover {\n color: red;\n}\n"
36
+
37
+ # Minified:
38
+ Sasso.compile_string("a { b: 1px }", style: :compressed) # => "a{b:1px}"
39
+
40
+ # Indented .sass syntax:
41
+ Sasso.compile_string("a\n b: 1px\n", indented: true)
42
+
43
+ # A file (syntax inferred from the extension; diagnostics get the file name):
44
+ Sasso.compile("app/assets/stylesheets/application.scss",
45
+ style: :compressed, load_paths: ["vendor/stylesheets"])
46
+ ```
47
+
48
+ ### Options (`compile_string` / `compile`)
49
+
50
+ | Option | Default | Meaning |
51
+ | --- | --- | --- |
52
+ | `style:` | `:expanded` | `:expanded` or `:compressed` |
53
+ | `syntax:` | `:scss` | `:scss`, `:sass`, or `:css` |
54
+ | `indented:` | `false` | shorthand for `syntax: :sass` |
55
+ | `load_paths:` | `[]` | directories searched for `@use`/`@forward`/`@import` |
56
+ | `url:` | `nil` | filename shown in diagnostics (enables the rich dart-style error block) |
57
+ | `alert_ascii:` | `false` | ASCII-only diagnostics |
58
+
59
+ ### Errors
60
+
61
+ A compile failure raises `Sasso::CompileError` (a `Sasso::Error < StandardError`)
62
+ whose `#message` is the compiler's full diagnostic — the same text the `sasso`
63
+ CLI prints.
64
+
65
+ ```ruby
66
+ begin
67
+ Sasso.compile_string("a { b: 1px + 1em }")
68
+ rescue Sasso::CompileError => e
69
+ warn e.message
70
+ end
71
+ ```
72
+
73
+ ## Conformance & performance
74
+
75
+ The core passes **100% of the *attempted* official sass-spec suite**
76
+ byte-for-byte against dart-sass; see the
77
+ [core repo](https://github.com/momiji-rs/sasso#conformance). Compilation is
78
+ in-process (no IPC), and the engine is heavily perf-tuned (a scoped bump arena,
79
+ reference-counted values).
80
+
81
+ ## License
82
+
83
+ MIT OR Apache-2.0, matching the core compiler.
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Sasso
4
+ # The gem version floats INDEPENDENTLY of the core `sasso` crate version; the
5
+ # native extension pins the crate exactly (ext/sasso/Cargo.toml: sasso = "=…").
6
+ VERSION = "0.1.0"
7
+ end
data/lib/sasso.rb ADDED
@@ -0,0 +1,73 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "sasso/version"
4
+
5
+ module Sasso
6
+ # Base error for the gem.
7
+ class Error < StandardError; end
8
+
9
+ # Raised on a Sass compile failure. `#message` is the compiler's full
10
+ # diagnostic (the same text the `sasso` CLI prints) when a `url:` is given,
11
+ # otherwise the legacy `Error: <msg> (line:col)` one-liner.
12
+ class CompileError < Error; end
13
+ end
14
+
15
+ # Load the compiled native extension. Precompiled ("fat") gems place a copy per
16
+ # Ruby minor under lib/sasso/<major.minor>/; a source build (rake compile /
17
+ # `gem install` fallback) places it flat at lib/sasso/sasso.{so,bundle}. The
18
+ # `Sasso::CompileError` class above is defined BEFORE this require so the native
19
+ # code can raise it.
20
+ begin
21
+ RUBY_VERSION =~ /(\d+\.\d+)/
22
+ require_relative "sasso/#{Regexp.last_match(1)}/sasso"
23
+ rescue LoadError
24
+ require_relative "sasso/sasso"
25
+ end
26
+
27
+ module Sasso
28
+ STYLES = %i[expanded compressed].freeze
29
+ SYNTAXES = %i[scss sass css].freeze
30
+
31
+ module_function
32
+
33
+ # Compile a SCSS/Sass source String to a CSS String.
34
+ #
35
+ # style: :expanded (default) | :compressed
36
+ # syntax: :scss (default) | :sass | :css
37
+ # indented: true => shorthand for syntax: :sass
38
+ # load_paths: dirs searched for @use/@forward/@import (built-in importer)
39
+ # url: filename shown in diagnostics; ENABLES the dart-exact error block
40
+ # alert_ascii: true => ASCII-only diagnostics (maps to the compiler's no-unicode)
41
+ #
42
+ # Raises Sasso::CompileError on a compile failure; ArgumentError on bad options.
43
+ def compile_string(source, style: :expanded, syntax: :scss, indented: false,
44
+ load_paths: [], url: nil, alert_ascii: false)
45
+ syntax = :sass if indented
46
+ validate!(style, STYLES, :style)
47
+ validate!(syntax, SYNTAXES, :syntax)
48
+ paths = Array(load_paths).map(&:to_s)
49
+ Sasso::Native._compile(String(source), style.to_s, syntax.to_s,
50
+ paths, url && url.to_s, !alert_ascii)
51
+ end
52
+
53
+ # Compile the file at `path`. Syntax is inferred from the extension unless
54
+ # overridden; `url:` defaults to `path` so diagnostics get the dart-exact block.
55
+ def compile(path, **opts)
56
+ src = File.read(path)
57
+ inferred =
58
+ case File.extname(path)
59
+ when ".sass" then :sass
60
+ when ".css" then :css
61
+ else :scss
62
+ end
63
+ compile_string(src, syntax: inferred, url: path.to_s, **opts)
64
+ end
65
+
66
+ def validate!(value, allowed, name)
67
+ return if allowed.include?(value)
68
+
69
+ raise ArgumentError,
70
+ "invalid #{name}: #{value.inspect} (expected one of #{allowed.inspect})"
71
+ end
72
+ private_class_method :validate!
73
+ end
data/sig/sasso.rbs ADDED
@@ -0,0 +1,15 @@
1
+ module Sasso
2
+ VERSION: String
3
+ STYLES: Array[Symbol]
4
+ SYNTAXES: Array[Symbol]
5
+
6
+ class Error < StandardError
7
+ end
8
+ class CompileError < Error
9
+ end
10
+
11
+ def self.compile_string: (String source, ?style: Symbol, ?syntax: Symbol,
12
+ ?indented: bool, ?load_paths: Array[untyped],
13
+ ?url: String?, ?alert_ascii: bool) -> String
14
+ def self.compile: (untyped path, **untyped opts) -> String
15
+ end
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sasso
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: x64-mingw-ucrt
6
+ authors:
7
+ - momiji-rs
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-06-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '13.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '13.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake-compiler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ description: Embeddable, dependency-free SCSS/Sass compiler aiming at byte-for-byte
56
+ dart-sass parity, shipped as a Rust native extension (magnus + rb-sys).
57
+ email:
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - CHANGELOG.md
63
+ - LICENSE-APACHE
64
+ - LICENSE-MIT
65
+ - README.md
66
+ - lib/sasso.rb
67
+ - lib/sasso/3.1/sasso.so
68
+ - lib/sasso/3.2/sasso.so
69
+ - lib/sasso/3.3/sasso.so
70
+ - lib/sasso/3.4/sasso.so
71
+ - lib/sasso/version.rb
72
+ - sig/sasso.rbs
73
+ homepage: https://github.com/momiji-rs/sasso-ruby
74
+ licenses:
75
+ - MIT OR Apache-2.0
76
+ metadata:
77
+ homepage_uri: https://github.com/momiji-rs/sasso-ruby
78
+ source_code_uri: https://github.com/momiji-rs/sasso-ruby
79
+ changelog_uri: https://github.com/momiji-rs/sasso-ruby/blob/main/CHANGELOG.md
80
+ rubygems_mfa_required: 'true'
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '3.1'
90
+ - - "<"
91
+ - !ruby/object:Gem::Version
92
+ version: 3.5.dev
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: 3.3.22
98
+ requirements: []
99
+ rubygems_version: 3.5.23
100
+ signing_key:
101
+ specification_version: 4
102
+ summary: Pure-Rust SCSS to CSS compiler (a dart-sass alternative), in-process via
103
+ a native extension.
104
+ test_files: []