sass 3.2.0 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/VERSION_DATE +1 -1
- data/lib/sass/tree/visitors/perform.rb +4 -3
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.2.
|
1
|
+
3.2.1
|
data/VERSION_DATE
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
16 August 2012 00:34:28 UTC
|
@@ -66,6 +66,7 @@ class Sass::Tree::Visitors::Perform < Sass::Tree::Visitors::Base
|
|
66
66
|
end
|
67
67
|
|
68
68
|
yield env
|
69
|
+
rescue Exception => e
|
69
70
|
ensure
|
70
71
|
# If there's a keyword exception, we don't want to throw it immediately,
|
71
72
|
# because the invalid keywords may be part of a glob argument that should be
|
@@ -77,10 +78,10 @@ class Sass::Tree::Visitors::Perform < Sass::Tree::Visitors::Base
|
|
77
78
|
# non-Sass exceptions.
|
78
79
|
if keyword_exception &&
|
79
80
|
!(arg_list && arg_list.keywords_accessed) &&
|
80
|
-
(
|
81
|
+
(e.nil? || e.is_a?(Sass::SyntaxError))
|
81
82
|
raise keyword_exception
|
82
|
-
elsif
|
83
|
-
raise
|
83
|
+
elsif e
|
84
|
+
raise e
|
84
85
|
end
|
85
86
|
end
|
86
87
|
|
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.2.
|
4
|
+
version: 3.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2012-08-
|
14
|
+
date: 2012-08-16 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: yard
|