sass 3.5.0 → 3.5.1
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/VERSION +1 -1
- data/VERSION_DATE +1 -1
- data/lib/sass/plugin/compiler.rb +2 -2
- metadata +22 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf65be15c86dd6e3a3c9770c97b9a4afed2b6210
|
|
4
|
+
data.tar.gz: a5f36094f6a7b74060401647671828a96f3dd0d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9717eeeaf339157eb32225e525cb14064cefd2def503c7767c1bd6759e3ade0d41d8c9af6262ee2106d8b798d356517be40d6f8786a1766ad4c7abadad0af1a3
|
|
7
|
+
data.tar.gz: a92192960085322380bdd7afdddaa54b9e07cc77c3b56c51d630f7666860865ccdf896bc4280e66f7b1dbd392852bacec6c97b41594d6c65a335a9724d244e9e
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.5.
|
|
1
|
+
3.5.1
|
data/VERSION_DATE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
13 July 2017 22:58:15 UTC
|
data/lib/sass/plugin/compiler.rb
CHANGED
|
@@ -377,8 +377,8 @@ module Sass::Plugin
|
|
|
377
377
|
|
|
378
378
|
# This is mocked out in compiler_test.rb.
|
|
379
379
|
def create_listener(*args, &block)
|
|
380
|
-
require 'listen'
|
|
381
|
-
|
|
380
|
+
require 'sass-listen'
|
|
381
|
+
SassListen.to(*args, &block)
|
|
382
382
|
end
|
|
383
383
|
|
|
384
384
|
def remove_redundant_directories(directories)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.5.
|
|
4
|
+
version: 3.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Natalie Weizenbaum
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2017-07-
|
|
13
|
+
date: 2017-07-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: sass-listen
|
|
@@ -18,14 +18,14 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - "~>"
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version:
|
|
21
|
+
version: 4.0.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - "~>"
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version:
|
|
28
|
+
version: 4.0.0
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: yard
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -372,34 +372,34 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
372
372
|
version: '0'
|
|
373
373
|
requirements: []
|
|
374
374
|
rubyforge_project: sass
|
|
375
|
-
rubygems_version: 2.
|
|
375
|
+
rubygems_version: 2.6.11
|
|
376
376
|
signing_key:
|
|
377
377
|
specification_version: 4
|
|
378
378
|
summary: A powerful but elegant CSS compiler that makes CSS fun again.
|
|
379
379
|
test_files:
|
|
380
|
-
- test/sass/extend_test.rb
|
|
381
|
-
- test/sass/css2sass_test.rb
|
|
382
|
-
- test/sass/util_test.rb
|
|
383
|
-
- test/sass/superselector_test.rb
|
|
384
|
-
- test/sass/value_helpers_test.rb
|
|
385
380
|
- test/sass/plugin_test.rb
|
|
386
|
-
- test/sass/logger_test.rb
|
|
387
|
-
- test/sass/functions_test.rb
|
|
388
|
-
- test/sass/conversion_test.rb
|
|
389
|
-
- test/sass/source_map_test.rb
|
|
390
|
-
- test/sass/cache_test.rb
|
|
391
381
|
- test/sass/encoding_test.rb
|
|
392
|
-
- test/sass/
|
|
382
|
+
- test/sass/importer_test.rb
|
|
393
383
|
- test/sass/callbacks_test.rb
|
|
394
|
-
- test/sass/script_conversion_test.rb
|
|
395
384
|
- test/sass/scss/css_test.rb
|
|
396
385
|
- test/sass/scss/rx_test.rb
|
|
397
386
|
- test/sass/scss/scss_test.rb
|
|
387
|
+
- test/sass/util/multibyte_string_scanner_test.rb
|
|
388
|
+
- test/sass/util/normalized_map_test.rb
|
|
389
|
+
- test/sass/util/subset_map_test.rb
|
|
390
|
+
- test/sass/functions_test.rb
|
|
391
|
+
- test/sass/util_test.rb
|
|
392
|
+
- test/sass/cache_test.rb
|
|
398
393
|
- test/sass/exec_test.rb
|
|
399
|
-
- test/sass/
|
|
394
|
+
- test/sass/value_helpers_test.rb
|
|
395
|
+
- test/sass/conversion_test.rb
|
|
396
|
+
- test/sass/script_test.rb
|
|
397
|
+
- test/sass/logger_test.rb
|
|
398
|
+
- test/sass/compiler_test.rb
|
|
400
399
|
- test/sass/engine_test.rb
|
|
400
|
+
- test/sass/css2sass_test.rb
|
|
401
|
+
- test/sass/superselector_test.rb
|
|
402
|
+
- test/sass/script_conversion_test.rb
|
|
401
403
|
- test/sass/css_variable_test.rb
|
|
402
|
-
- test/sass/
|
|
403
|
-
- test/sass/
|
|
404
|
-
- test/sass/util/normalized_map_test.rb
|
|
405
|
-
- test/sass/util/multibyte_string_scanner_test.rb
|
|
404
|
+
- test/sass/source_map_test.rb
|
|
405
|
+
- test/sass/extend_test.rb
|