sass 3.7.0 → 3.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e9abf6343867b108ab17ccfa5170666b2a45f904
4
- data.tar.gz: b5744bc72de099acd9ead2a0df936c122b80eab7
2
+ SHA256:
3
+ metadata.gz: a43b1c30d00eac06d7c69a8847bb865ed176e8110498b707291c47bcc55971c0
4
+ data.tar.gz: 927180d64da236f16bc1a3aba9b49cd82e245eb90e0b040097924412bc9a8407
5
5
  SHA512:
6
- metadata.gz: 2a4f75cb603cc8c249e13a5d20d35b84302a98834e3a768a38c3fefffdc8b3ab52217c118855ea087ce12ec24a5327302e5516e02112c122456299ad7aacf446
7
- data.tar.gz: a56c6e88b050deba0d2d2b6c74c784e5c71337e6b6a1f0ce5432aa9d75395fe27654b6ff9e9d5f3fa91abc5d02a800337c67710f6bb06143f514a024f24e995e
6
+ metadata.gz: da741c30bf52a8abccf6d1865065323b26e1c58f496ab90dba99a290f304e8f38ab3ce9e724862a59d347b525087a4c1a1b88a2602e8370115d8436f2198e937
7
+ data.tar.gz: cbf371f77685d06b62979e722116b3eeb3c2a5c0cf8b5bd811167b1c5d42d9285081af9d1bb9b2ceb631951e18e6d87e0083eceac9146d365f2f2b418670b06f
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.7.0
1
+ 3.7.1
@@ -1 +1 @@
1
- 06 November 2018 23:08:31 UTC
1
+ 07 November 2018 19:38:22 UTC
@@ -991,6 +991,8 @@ module Sass
991
991
  # containing the value.
992
992
  # This results in a dramatic speed increase.
993
993
  if (val = tok(STATIC_VALUE))
994
+ # If val ends with escaped whitespace, leave it be.
995
+ val = val.lstrip.sub(/(?<!\\)\s*$/, '\1')
994
996
  str = Sass::Script::Tree::Literal.new(Sass::Script::Value::String.new(val.strip))
995
997
  str.line = start_pos.line
996
998
  str.source_range = range(start_pos)
@@ -52,7 +52,7 @@ module Sass
52
52
  UNICODE = /\\#{H}{1,6}[ \t\r\n\f]?/
53
53
  s = '\u{80}-\u{D7FF}\u{E000}-\u{FFFD}\u{10000}-\u{10FFFF}'
54
54
  NONASCII = /[#{s}]/
55
- ESCAPE = /#{UNICODE}|\\[ -~#{s}]/
55
+ ESCAPE = /#{UNICODE}|\\[^0-9a-fA-F\r\n\f]/
56
56
  NMSTART = /[_a-zA-Z]|#{NONASCII}|#{ESCAPE}/
57
57
  NMCHAR = /[a-zA-Z0-9_-]|#{NONASCII}|#{ESCAPE}/
58
58
  STRING1 = /\"((?:[^\n\r\f\\"]|\\#{NL}|#{ESCAPE})*)\"/
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.7.0
4
+ version: 3.7.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: 2018-11-06 00:00:00.000000000 Z
13
+ date: 2018-11-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass-listen
@@ -276,7 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
276
276
  version: '0'
277
277
  requirements: []
278
278
  rubyforge_project: sass
279
- rubygems_version: 2.6.14
279
+ rubygems_version: 2.7.7
280
280
  signing_key:
281
281
  specification_version: 4
282
282
  summary: A powerful but elegant CSS compiler that makes CSS fun again.