sass 3.1.0.alpha.19 → 3.1.0.alpha.20
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.
- data/EDGE_GEM_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/sass/util.rb +2 -2
- data/lib/sass/version.rb +3 -1
- metadata +10 -10
data/EDGE_GEM_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.1.0.alpha.
|
1
|
+
3.1.0.alpha.20
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.1.0.alpha.
|
1
|
+
3.1.0.alpha.20
|
data/lib/sass/util.rb
CHANGED
@@ -631,9 +631,9 @@ MSG
|
|
631
631
|
#
|
632
632
|
# @param obj {Object}
|
633
633
|
# @return {String}
|
634
|
-
def
|
634
|
+
def inspect_obj(obj)
|
635
635
|
return obj.inspect unless version_geq(::RUBY_VERSION, "1.9.2")
|
636
|
-
return ':' +
|
636
|
+
return ':' + inspect_obj(obj.to_s) if obj.is_a?(Symbol)
|
637
637
|
return obj.inspect unless obj.is_a?(String)
|
638
638
|
'"' + obj.gsub(/[\x00-\x7F]+/) {|s| s.inspect[1...-1]} + '"'
|
639
639
|
end
|
data/lib/sass/version.rb
CHANGED
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.1.0.alpha.
|
4
|
+
version: 3.1.0.alpha.20
|
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: 2010-10-
|
14
|
+
date: 2010-10-26 00:00:00 -04:00
|
15
15
|
default_executable:
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
@@ -162,16 +162,16 @@ files:
|
|
162
162
|
- test/sass/plugin_test.rb
|
163
163
|
- test/sass/extend_test.rb
|
164
164
|
- test/sass/functions_test.rb
|
165
|
+
- test/sass/cache_test.rb
|
165
166
|
- test/sass/less_conversion_test.rb
|
166
|
-
- test/sass/
|
167
|
-
- test/sass/util/subset_map_test.rb
|
167
|
+
- test/sass/importer_test.rb
|
168
168
|
- test/sass/more_results/more1.css
|
169
169
|
- test/sass/more_results/more1_with_line_comments.css
|
170
170
|
- test/sass/more_results/more_import.css
|
171
171
|
- test/sass/more_templates/_more_partial.sass
|
172
172
|
- test/sass/more_templates/more1.sass
|
173
173
|
- test/sass/more_templates/more_import.sass
|
174
|
-
- test/sass/
|
174
|
+
- test/sass/mock_importer.rb
|
175
175
|
- test/sass/results/alt.css
|
176
176
|
- test/sass/results/basic.css
|
177
177
|
- test/sass/results/compact.css
|
@@ -193,7 +193,7 @@ files:
|
|
193
193
|
- test/sass/results/units.css
|
194
194
|
- test/sass/results/warn.css
|
195
195
|
- test/sass/results/warn_imported.css
|
196
|
-
- test/sass/
|
196
|
+
- test/sass/script_conversion_test.rb
|
197
197
|
- test/sass/script_test.rb
|
198
198
|
- test/sass/scss/css_test.rb
|
199
199
|
- test/sass/scss/rx_test.rb
|
@@ -234,8 +234,8 @@ files:
|
|
234
234
|
- test/sass/templates/units.sass
|
235
235
|
- test/sass/templates/warn.sass
|
236
236
|
- test/sass/templates/warn_imported.sass
|
237
|
-
- test/sass/mock_importer.rb
|
238
237
|
- test/sass/test_helper.rb
|
238
|
+
- test/sass/util/subset_map_test.rb
|
239
239
|
- test/sass/util_test.rb
|
240
240
|
- test/test_helper.rb
|
241
241
|
- extra/update_watch.rb
|
@@ -285,13 +285,13 @@ test_files:
|
|
285
285
|
- test/sass/plugin_test.rb
|
286
286
|
- test/sass/extend_test.rb
|
287
287
|
- test/sass/functions_test.rb
|
288
|
-
- test/sass/less_conversion_test.rb
|
289
|
-
- test/sass/script_conversion_test.rb
|
290
|
-
- test/sass/util/subset_map_test.rb
|
291
288
|
- test/sass/cache_test.rb
|
289
|
+
- test/sass/less_conversion_test.rb
|
292
290
|
- test/sass/importer_test.rb
|
291
|
+
- test/sass/script_conversion_test.rb
|
293
292
|
- test/sass/script_test.rb
|
294
293
|
- test/sass/scss/css_test.rb
|
295
294
|
- test/sass/scss/rx_test.rb
|
296
295
|
- test/sass/scss/scss_test.rb
|
296
|
+
- test/sass/util/subset_map_test.rb
|
297
297
|
- test/sass/util_test.rb
|