sass 3.4.0.rc.3 → 3.4.0
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/exec/sass_scss.rb +1 -1
- data/lib/sass/script/lexer.rb +1 -1
- data/lib/sass/tree/visitors/to_css.rb +1 -1
- data/test/sass/source_map_test.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddad801e37fc518f7e65d22001ccfd3953ed038c
|
4
|
+
data.tar.gz: a14f945fcf23bd0fc3c34c9cd3b74c5c108fef78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f50f5f87c434e97dfb5b97fa9bd3489836f3a59a1026c95d849f0248185528ecb9f36b7436e101517d35c37814023312f58a9c111a15525164165b173313c3da
|
7
|
+
data.tar.gz: e214a6daa25e3de564b65c6443bcbfc85134c9757b1c314f98176db53c7e3fcdd119af6adc64fc99e0566dc451ad59efef89f5cbd64de46ed0d080c714ddbaf9
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.4.0
|
1
|
+
3.4.0
|
data/VERSION_DATE
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
19 August 2014 00:38:04 UTC
|
data/lib/sass/exec/sass_scss.rb
CHANGED
@@ -150,7 +150,7 @@ END
|
|
150
150
|
# This is optional for backwards-compatibility with Sass 3.3, which didn't
|
151
151
|
# enable sourcemaps by default and instead used "--sourcemap" to do so.
|
152
152
|
opts.on(:OPTIONAL, '--sourcemap=TYPE',
|
153
|
-
'How link generated output to the source files.',
|
153
|
+
'How to link generated output to the source files.',
|
154
154
|
' auto (default): relative paths where possible, file URIs elsewhere',
|
155
155
|
' file: always absolute file URIs',
|
156
156
|
' inline: include the source text in the sourcemap',
|
data/lib/sass/script/lexer.rb
CHANGED
@@ -232,7 +232,7 @@ class Sass::Tree::Visitors::ToCss < Sass::Tree::Visitors::Base
|
|
232
232
|
|
233
233
|
def visit_media(node)
|
234
234
|
with_tabs(@tabs + node.tabs) {visit_directive(node)}
|
235
|
-
output("\n") if node.group_end
|
235
|
+
output("\n") if node.style != :compressed && node.group_end
|
236
236
|
end
|
237
237
|
|
238
238
|
def visit_supports(node)
|
@@ -791,7 +791,7 @@ CSS
|
|
791
791
|
end
|
792
792
|
|
793
793
|
def test_multiline_interpolation_source_range
|
794
|
-
engine = Sass::Engine.new(<<-SCSS, cache
|
794
|
+
engine = Sass::Engine.new(<<-SCSS, :cache => false, :syntax => :scss)
|
795
795
|
p {
|
796
796
|
filter: progid:DXImageTransform(
|
797
797
|
'\#{123}');
|
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.4.0
|
4
|
+
version: 3.4.0
|
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: 2014-08-
|
13
|
+
date: 2014-08-19 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: yard
|
@@ -386,9 +386,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
386
386
|
version: 1.8.7
|
387
387
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
388
388
|
requirements:
|
389
|
-
- - '
|
389
|
+
- - '>='
|
390
390
|
- !ruby/object:Gem::Version
|
391
|
-
version:
|
391
|
+
version: '0'
|
392
392
|
requirements: []
|
393
393
|
rubyforge_project: sass
|
394
394
|
rubygems_version: 2.0.3
|