sassc-embedded 1.77.2 → 1.77.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/lib/sassc/embedded/version.rb +1 -1
- data/lib/sassc/embedded.rb +35 -22
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd81bac6ef9d2f86bf538c0143e19267e892a907d8a3b7d3547ce900b6fb8e08
|
4
|
+
data.tar.gz: 6c9592d7f4f8be038427f7ed893b6bb235f598a7d8a9cf34091b453c325b8551
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e03d2ba0d17fab117b33f49a03b89ac90f75b49afb0c42db58c5e8a9d42f62737f7c6f81db5eef3a8da77e045b7a686ca036e5475f906a30758388e5624b5b7
|
7
|
+
data.tar.gz: 12ff6dc22c74b77adef326df8a4f0c102bc34114e9b815e6be65a53307ec9271a040400d3965baad93c0387a7f909c31c3c2e1e1549956d22cb680fc3caf3106
|
data/lib/sassc/embedded.rb
CHANGED
@@ -552,32 +552,45 @@ module SassC
|
|
552
552
|
module_function
|
553
553
|
|
554
554
|
def parse(...)
|
555
|
-
::URI.parse(...)
|
555
|
+
::URI::RFC3986_PARSER.parse(...)
|
556
556
|
end
|
557
557
|
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
format('%%%02X', match.unpack1('C'))
|
573
|
-
end.force_encoding(str.encoding)
|
574
|
-
end
|
558
|
+
{
|
559
|
+
encode_uri_path_component: "!$&'()*+,;=:/@",
|
560
|
+
encode_uri_query_component: "!$&'()*+,;=:/?@",
|
561
|
+
encode_uri_component: nil,
|
562
|
+
encode_uri: "!$&'()*+,;=:/?#[]@"
|
563
|
+
}
|
564
|
+
.each do |symbol, extra_unescaped|
|
565
|
+
regexp = Regexp.new("[^0-9A-Za-z#{Regexp.escape("-._~#{extra_unescaped}")}]", Regexp::NOENCODING)
|
566
|
+
define_method(symbol) do |str|
|
567
|
+
str.b.gsub(regexp) do |match|
|
568
|
+
"%#{match.unpack1('H2').upcase}"
|
569
|
+
end.force_encoding(str.encoding)
|
570
|
+
end
|
571
|
+
end
|
575
572
|
|
576
|
-
|
577
|
-
|
578
|
-
|
573
|
+
{
|
574
|
+
decode_uri_component: nil,
|
575
|
+
decode_uri: "!$&'()*+,;=:/?#[]@"
|
576
|
+
}
|
577
|
+
.each do |symbol, preserve_escaped|
|
578
|
+
regexp = /%[0-9A-Fa-f]{2}/o
|
579
|
+
if preserve_escaped.nil? || preserve_escaped.empty?
|
580
|
+
define_method(symbol) do |str|
|
581
|
+
str.gsub(regexp) do |match|
|
582
|
+
[match.reverse!].pack('h2')
|
583
|
+
end.force_encoding(str.encoding)
|
584
|
+
end
|
585
|
+
else
|
586
|
+
define_method(symbol) do |str|
|
587
|
+
str.gsub(regexp) do |match|
|
588
|
+
decoded = [match.reverse].pack('h2')
|
589
|
+
preserve_escaped.include?(decoded) ? match : decoded
|
590
|
+
end.force_encoding(str.encoding)
|
591
|
+
end
|
592
|
+
end
|
579
593
|
end
|
580
|
-
end
|
581
594
|
|
582
595
|
def file_urls_to_relative_url(url, from_url)
|
583
596
|
parse(url).route_from(from_url).to_s
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sassc-embedded
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.77.
|
4
|
+
version: 1.77.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- なつき
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass-embedded
|
@@ -79,7 +79,7 @@ licenses:
|
|
79
79
|
metadata:
|
80
80
|
bug_tracker_uri: https://github.com/sass-contrib/sassc-embedded-shim-ruby/issues
|
81
81
|
documentation_uri: https://rubydoc.info/gems/sassc
|
82
|
-
source_code_uri: https://github.com/sass-contrib/sassc-embedded-shim-ruby/tree/v1.77.
|
82
|
+
source_code_uri: https://github.com/sass-contrib/sassc-embedded-shim-ruby/tree/v1.77.4
|
83
83
|
funding_uri: https://github.com/sponsors/ntkme
|
84
84
|
rubygems_mfa_required: 'true'
|
85
85
|
post_install_message:
|