lightningcss 0.1.0-aarch64-linux-gnu

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.
@@ -0,0 +1,26 @@
1
+ # Note: This file is hand written, `rbs-inline` does not generate this file.
2
+
3
+ module LightningCSS
4
+ type browsers = {
5
+ ?android: Integer,
6
+ ?chrome: Integer,
7
+ ?edge: Integer,
8
+ ?firefox: Integer,
9
+ ?ie: Integer,
10
+ ?ios: Integer,
11
+ ?ios_saf: Integer,
12
+ ?opera: Integer,
13
+ ?safari: Integer,
14
+ ?samsung: Integer
15
+ }
16
+
17
+ type css_modules = bool | {
18
+ ?pattern: String,
19
+ ?dashed_idents: bool,
20
+ ?animation: bool,
21
+ ?grid: bool,
22
+ ?container: bool,
23
+ ?custom_idents: bool,
24
+ ?pure: bool
25
+ }
26
+ end
@@ -0,0 +1,5 @@
1
+ # Generated from lib/lightningcss/version.rb with RBS::Inline
2
+
3
+ module LightningCSS
4
+ VERSION: ::String
5
+ end
@@ -0,0 +1,31 @@
1
+ # Generated from lib/lightningcss.rb with RBS::Inline
2
+
3
+ # Ruby bindings for Lightning CSS.
4
+ #
5
+ # LightningCSS.transform(".a { color: red }", minify: true).code
6
+ # #=> ".a{color:red}"
7
+ #
8
+ # Every option is passed through to Lightning CSS as written, except `scope`, which narrows each
9
+ # rule by a selector fragment so a stylesheet only applies where that fragment matches:
10
+ #
11
+ # LightningCSS.transform(".title { color: red }", scope: "[data-scope-abc]").code
12
+ # #=> ".title[data-scope-abc]{color:red}"
13
+ #
14
+ # `LightningCSS::Options` is what the options are read by, and `LightningCSS::Transformer` holds a
15
+ # set of them to reuse across many stylesheets.
16
+ module LightningCSS
17
+ # : (String, ?filename: String?, ?minify: bool, ?error_recovery: bool, ?targets: browsers?, ?css_modules: css_modules?, ?scope: String?) -> LightningCSS::Result
18
+ def self.transform: (String, ?filename: String?, ?minify: bool, ?error_recovery: bool, ?targets: browsers?, ?css_modules: css_modules?, ?scope: String?) -> LightningCSS::Result
19
+
20
+ # : (String, ?filename: String?, ?minify: bool, ?error_recovery: bool, ?targets: browsers?, ?css_modules: css_modules?, ?scope: String?) -> LightningCSS::Result
21
+ def self.bundle: (String, ?filename: String?, ?minify: bool, ?error_recovery: bool, ?targets: browsers?, ?css_modules: css_modules?, ?scope: String?) -> LightningCSS::Result
22
+
23
+ # : (String, ?filename: String?, ?minify: bool, ?error_recovery: bool, ?targets: browsers?) -> LightningCSS::Result
24
+ def self.transform_style_attribute: (String, ?filename: String?, ?minify: bool, ?error_recovery: bool, ?targets: browsers?) -> LightningCSS::Result
25
+
26
+ # : (String, ?filename: String?, ?error_recovery: bool, ?targets: browsers?, ?css_modules: css_modules?, ?scope: String?) -> String
27
+ def self.minify: (String, ?filename: String?, ?error_recovery: bool, ?targets: browsers?, ?css_modules: css_modules?, ?scope: String?) -> String
28
+
29
+ # : () -> String
30
+ def self.native_version: () -> String
31
+ end
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lightningcss
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: aarch64-linux-gnu
6
+ authors:
7
+ - Marco Roth
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-08-24 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Ruby bindings for Lightning CSS, an extremely fast CSS parser, transformer,
14
+ bundler, and minifier.
15
+ email:
16
+ - marco.roth@intergga.ch
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE.txt
22
+ - README.md
23
+ - ext/lightningcss/extconf.rb
24
+ - ext/lightningcss/include/lightningcss.h
25
+ - ext/lightningcss/lightningcss.c
26
+ - lib/lightningcss.rb
27
+ - lib/lightningcss/3.2/lightningcss.so
28
+ - lib/lightningcss/3.3/lightningcss.so
29
+ - lib/lightningcss/3.4/lightningcss.so
30
+ - lib/lightningcss/4.0/lightningcss.so
31
+ - lib/lightningcss/backend.rb
32
+ - lib/lightningcss/errors.rb
33
+ - lib/lightningcss/options.rb
34
+ - lib/lightningcss/result.rb
35
+ - lib/lightningcss/transformer.rb
36
+ - lib/lightningcss/version.rb
37
+ - licenses/README.md
38
+ - licenses/lightningcss-MPL-2.0.txt
39
+ - lightningcss.gemspec
40
+ - rust/Cargo.lock
41
+ - rust/Cargo.toml
42
+ - rust/build.rs
43
+ - rust/cbindgen.toml
44
+ - rust/rustfmt.toml
45
+ - rust/src/lib.rs
46
+ - rust/src/options.rs
47
+ - rust/src/scope.rs
48
+ - sig/lightningcss.rbs
49
+ - sig/lightningcss/backend.rbs
50
+ - sig/lightningcss/errors.rbs
51
+ - sig/lightningcss/options.rbs
52
+ - sig/lightningcss/result.rbs
53
+ - sig/lightningcss/transformer.rbs
54
+ - sig/lightningcss/types.rbs
55
+ - sig/lightningcss/version.rbs
56
+ homepage: https://github.com/marcoroth/lightningcss-ruby
57
+ licenses:
58
+ - MIT
59
+ metadata:
60
+ homepage_uri: https://github.com/marcoroth/lightningcss-ruby
61
+ source_code_uri: https://github.com/marcoroth/lightningcss-ruby
62
+ changelog_uri: https://github.com/marcoroth/lightningcss-ruby/releases
63
+ rubygems_mfa_required: 'true'
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '3.2'
73
+ - - "<"
74
+ - !ruby/object:Gem::Version
75
+ version: 4.1.dev
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 3.3.22
81
+ requirements: []
82
+ rubygems_version: 3.5.23
83
+ signing_key:
84
+ specification_version: 4
85
+ summary: An extremely fast CSS parser, transformer, bundler, and minifier.
86
+ test_files: []