bug - keys are strings here not symbols...
Johnathon E. Wright
committed Nov 10, 2011
commit 441c8ce60a2b8bfb8f94452e5568ba307c8eabda
Showing 1
changed file with
1 additions
and 1 deletions
sketch/base.rb b/lib/sketch/base.rb
+1
-1
| @@ | @@ -14,7 +14,7 @@ module Sketch::Base |
| end | |
| end | |
| - | out[:class] = out.delete(:klass) if out.has_key?(:klass) |
| + | out['class'] = out.delete('klass') if out.has_key?('klass') |
| out | |
| end | |