sass-embedded 1.86.3-aarch64-mingw-ucrt → 1.87.0-aarch64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a351398c7b602d7eaa8f0d726fd8637c89670f2090d67b64c82c348af75e3f74
4
- data.tar.gz: 7af59ffd3596eec46642e07c8719614fd733fb6b5155d43f9289af9462b18a96
3
+ metadata.gz: d5f6a44f8b4a12d415593c92be3d5e9aacde89eab1b1c25a120e0588abb2416e
4
+ data.tar.gz: 8f5181a8d1277d16a628d1f56be88a2c220d372dcd985a5afa88734e7589e58f
5
5
  SHA512:
6
- metadata.gz: a71214b735f32899e2a1fca399acc21e40387bf5151cf946a24a31fe678dfe8a2c45425d33742a8d4f7e5ef35a6dd9590d5c2a94a90281721711b471962940a5
7
- data.tar.gz: '0950d9ee11e2637f1b8082f8a4ddbbeb428ed59cfe4de04bd41e3a6dfd50a02499a3b924db13ab86e50aa9cc32b1bffbd8388b58ad565e82ab4f292243df95d1'
6
+ metadata.gz: 21ec474edbecf8ee09db247266b0fadf0d4d23d9032a0f6825f8027b8f85aa51a294ba986143e990c0c6930420ee01e6d3ac9183c7cb4266e1d4e50a47547396
7
+ data.tar.gz: 262f35683e2993784f2030e39c1e13b749629e75fb9ee5160a39b6c553ba3121669ef003247ea467a4fc4b9a6a2a2130c197f68af546001276741f337c947dd9
@@ -1,25 +1,25 @@
1
1
  Dart Sass license:
2
2
 
3
- Copyright (c) 2016, Google Inc.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3
+ Copyright (c) 2016, Google Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
23
 
24
24
 
25
25
  --------------------------------------------------------------------------------
@@ -310,6 +310,38 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
310
310
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
311
311
 
312
312
 
313
+ --------------------------------------------------------------------------------
314
+
315
+ cli_config license:
316
+
317
+ Copyright 2023, the Dart project authors.
318
+
319
+ Redistribution and use in source and binary forms, with or without
320
+ modification, are permitted provided that the following conditions are
321
+ met:
322
+
323
+ * Redistributions of source code must retain the above copyright
324
+ notice, this list of conditions and the following disclaimer.
325
+ * Redistributions in binary form must reproduce the above
326
+ copyright notice, this list of conditions and the following
327
+ disclaimer in the documentation and/or other materials provided
328
+ with the distribution.
329
+ * Neither the name of Google LLC nor the names of its
330
+ contributors may be used to endorse or promote products derived
331
+ from this software without specific prior written permission.
332
+
333
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
334
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
335
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
336
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
337
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
338
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
339
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
340
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
341
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
342
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
343
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
344
+
313
345
  --------------------------------------------------------------------------------
314
346
 
315
347
  cli_pkg license:
Binary file
Binary file
data/lib/sass/elf.rb CHANGED
@@ -363,10 +363,7 @@ module Sass
363
363
  return if phdr.nil?
364
364
 
365
365
  @io.seek(phdr[:p_offset], IO::SEEK_SET)
366
- interpreter = @io.read(phdr[:p_filesz])
367
- raise EncodingError unless interpreter.end_with?("\0")
368
-
369
- interpreter.chomp!("\0")
366
+ @io.read(phdr[:p_filesz]).unpack1('Z*')
370
367
  end
371
368
 
372
369
  INTERPRETER = begin
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.86.3'
5
+ VERSION = '1.87.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-embedded
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.3
4
+ version: 1.87.0
5
5
  platform: aarch64-mingw-ucrt
6
6
  authors:
7
7
  - なつき
@@ -111,8 +111,8 @@ licenses:
111
111
  - MIT
112
112
  metadata:
113
113
  bug_tracker_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/issues
114
- documentation_uri: https://rubydoc.info/gems/sass-embedded/1.86.3
115
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.86.3
114
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.87.0
115
+ source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.87.0
116
116
  funding_uri: https://github.com/sponsors/ntkme
117
117
  rubygems_mfa_required: 'true'
118
118
  rdoc_options: []
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  - !ruby/object:Gem::Version
130
130
  version: '0'
131
131
  requirements: []
132
- rubygems_version: 3.6.7
132
+ rubygems_version: 3.6.8
133
133
  specification_version: 4
134
134
  summary: Use dart-sass with Ruby!
135
135
  test_files: []