sassc-embedded 1.5.3 → 1.5.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 +8 -1
- 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: 7e5e1e76c99f6d9c1e0735114d4c1fee858fbf466878fa45fb607142d605886b
|
|
4
|
+
data.tar.gz: 2c428bbc53b229b9ecbd6ac26a3f559a2eb47b458d02855e64b444d6238dc0e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55b738463c259f446fb89f4373a5b6929f3c9abf07cd403217c860036780cb4a2737a6c2deceb3ef470baf9e523eb76794579a9fa75fe4b2d807439fa0c8ee9e
|
|
7
|
+
data.tar.gz: 222ddb543a2aea77fa84cc625c6a920c5350598c263defcedddf8db638dd704a6061a7b7d15ac61ad0299e8ec02520af76a58242e6774a86c6d591f1c4dd13f5
|
data/lib/sassc/embedded.rb
CHANGED
|
@@ -369,7 +369,14 @@ module SassC
|
|
|
369
369
|
end
|
|
370
370
|
|
|
371
371
|
def syntax(path)
|
|
372
|
-
File.extname(path)
|
|
372
|
+
case File.extname(path)
|
|
373
|
+
when '.sass'
|
|
374
|
+
:indented
|
|
375
|
+
when '.css'
|
|
376
|
+
:css
|
|
377
|
+
else
|
|
378
|
+
:scss
|
|
379
|
+
end
|
|
373
380
|
end
|
|
374
381
|
|
|
375
382
|
def imports_to_native(imports)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sassc-embedded
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- なつき
|
|
@@ -138,8 +138,8 @@ homepage: https://github.com/ntkme/sassc-embedded-polyfill-ruby
|
|
|
138
138
|
licenses:
|
|
139
139
|
- MIT
|
|
140
140
|
metadata:
|
|
141
|
-
documentation_uri: https://rubydoc.info/gems/sassc-embedded/1.5.
|
|
142
|
-
source_code_uri: https://github.com/ntkme/sassc-embedded-polyfill-ruby/tree/v1.5.
|
|
141
|
+
documentation_uri: https://rubydoc.info/gems/sassc-embedded/1.5.4
|
|
142
|
+
source_code_uri: https://github.com/ntkme/sassc-embedded-polyfill-ruby/tree/v1.5.4
|
|
143
143
|
funding_uri: https://github.com/sponsors/ntkme
|
|
144
144
|
post_install_message:
|
|
145
145
|
rdoc_options: []
|