Method: Webspicy::Support::World#to_data

Defined in:
lib/webspicy/support/world.rb

#to_data(which) ⇒ Object



30
31
32
33
34
35
36
37
38
39
# File 'lib/webspicy/support/world.rb', line 30

def to_data(which)
  case which
  when Hash
    OpenStruct.new(which)
  when Array
    which.map{|x| to_data(x) }
  else
    which
  end
end