sass-embedded 1.54.3 → 1.54.6
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/ext/sass/Rakefile +4 -2
- data/ext/sass/package.json +1 -1
- data/lib/sass/embedded/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ada8e2f2cb55241492ca48a8621eb6111aeb55079cef29ee406ddbbf07d3efe5
|
4
|
+
data.tar.gz: 39928f00bad808970834a92efec1b57d59726c8f96164d44cde3f1344f025d3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46bae8d7639d1b5af8dc1acf7683e2c9d86c8910c70e5df66e57cc3bcda7d73e9c32a949a84d23fe685d5837eca01d4cad1b53c87851ae4d3fa5d3f172fd181d
|
7
|
+
data.tar.gz: 208c945f7585dabdb94990c0809d6f52043033bbdaa7ebfa529cc15dc0f2f509be8af8f8f1bbd77cad67baf021b8a863e5a42904ffdd500608594b2808bdbc0f
|
data/ext/sass/Rakefile
CHANGED
@@ -23,7 +23,7 @@ end
|
|
23
23
|
|
24
24
|
file 'embedded.rb' => %w[sass_embedded] do |t|
|
25
25
|
path = 'sass_embedded/dart-sass-embedded'
|
26
|
-
path = "#{path}#{['.exe', '.bat'].find { |ext| File.exist? "#{path}#{ext}" }}"
|
26
|
+
path = "#{path}#{['.exe', '.bat'].find { |ext| File.exist? "#{path}#{ext}" }}" unless File.exist? path
|
27
27
|
|
28
28
|
raise "#{path} not found" unless File.exist? path
|
29
29
|
|
@@ -122,6 +122,8 @@ module Configuration
|
|
122
122
|
'darwin'
|
123
123
|
when /linux-musl/
|
124
124
|
'linux-musl'
|
125
|
+
when /linux-uclibc/
|
126
|
+
'linux-uclibc'
|
125
127
|
when /linux/
|
126
128
|
'linux'
|
127
129
|
when *Gem::WIN_PATTERNS
|
@@ -188,7 +190,7 @@ module Configuration
|
|
188
190
|
raise NotImplementedError, message
|
189
191
|
end
|
190
192
|
|
191
|
-
ext =
|
193
|
+
ext = Platform::OS == 'windows' ? 'zip' : 'tar.gz'
|
192
194
|
|
193
195
|
"#{repo}/releases/download/#{tag_name}/sass_embedded-#{tag_name}-#{os}-#{cpu}.#{ext}"
|
194
196
|
end
|
data/ext/sass/package.json
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-embedded
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.54.
|
4
|
+
version: 1.54.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- なつき
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.
|
61
|
+
version: 1.35.0
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 1.
|
68
|
+
version: 1.35.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rubocop-performance
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -159,8 +159,8 @@ homepage: https://github.com/ntkme/sass-embedded-host-ruby
|
|
159
159
|
licenses:
|
160
160
|
- MIT
|
161
161
|
metadata:
|
162
|
-
documentation_uri: https://rubydoc.info/gems/sass-embedded/1.54.
|
163
|
-
source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v1.54.
|
162
|
+
documentation_uri: https://rubydoc.info/gems/sass-embedded/1.54.6
|
163
|
+
source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v1.54.6
|
164
164
|
funding_uri: https://github.com/sponsors/ntkme
|
165
165
|
post_install_message:
|
166
166
|
rdoc_options: []
|