sass 3.2.0.alpha.4 → 3.2.0.alpha.6
Sign up to get free protection for your applications and to get access to all the features.
- data/REVISION +1 -1
- data/VERSION +1 -1
- data/lib/sass/engine.rb +1 -1
- data/lib/sass/importers/filesystem.rb +8 -8
- metadata +2 -2
data/REVISION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
a684cbdb776a334fecc3011207985a81606c7ea5
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.2.0.alpha.
|
1
|
+
3.2.0.alpha.6
|
data/lib/sass/engine.rb
CHANGED
@@ -326,7 +326,7 @@ module Sass
|
|
326
326
|
if @options[:cache] && key && sha
|
327
327
|
begin
|
328
328
|
old_options = root.options
|
329
|
-
root.options = {
|
329
|
+
root.options = {}
|
330
330
|
@options[:cache_store].store(key, sha, root)
|
331
331
|
ensure
|
332
332
|
root.options = old_options
|
@@ -45,6 +45,14 @@ module Sass
|
|
45
45
|
@root
|
46
46
|
end
|
47
47
|
|
48
|
+
def hash
|
49
|
+
@root.hash
|
50
|
+
end
|
51
|
+
|
52
|
+
def eql?(other)
|
53
|
+
root.eql?(other.root)
|
54
|
+
end
|
55
|
+
|
48
56
|
protected
|
49
57
|
|
50
58
|
# If a full uri is passed, this removes the root from it
|
@@ -116,14 +124,6 @@ module Sass
|
|
116
124
|
[dirname, basename, extension]
|
117
125
|
end
|
118
126
|
|
119
|
-
def hash
|
120
|
-
@root.hash
|
121
|
-
end
|
122
|
-
|
123
|
-
def eql?(other)
|
124
|
-
root.eql?(other.root)
|
125
|
-
end
|
126
|
-
|
127
127
|
private
|
128
128
|
|
129
129
|
def _find(dir, name, options)
|
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.0.alpha.
|
4
|
+
version: 3.2.0.alpha.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Weizenbaum
|
@@ -11,7 +11,7 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date: 2011-05-
|
14
|
+
date: 2011-05-26 00:00:00 -04:00
|
15
15
|
default_executable:
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|