sass 3.1.0.alpha.205 → 3.1.0.alpha.206

Sign up to get free protection for your applications and to get access to all the features.
data/REVISION CHANGED
@@ -1 +1 @@
1
- 992893e20e2be722e98284335a538e1efac856d5
1
+ 57a9ce49cd27fe529b7638f94069840bef411b75
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.0.alpha.205
1
+ 3.1.0.alpha.206
@@ -1013,8 +1013,11 @@ module Sass::Script
1013
1013
  # unquote("foo") => foo
1014
1014
  # unquote(foo) => foo
1015
1015
  def unquote(string)
1016
- assert_type string, :String
1017
- Sass::Script::String.new(string.value, :identifier)
1016
+ if string.is_a?(Sass::Script::String)
1017
+ Sass::Script::String.new(string.value, :identifier)
1018
+ else
1019
+ string
1020
+ end
1018
1021
  end
1019
1022
  declare :unquote, [:string]
1020
1023
 
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.205
4
+ version: 3.1.0.alpha.206
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Weizenbaum