I suppose you could make a hash like this: {'Arshes' => {'v1' => [2,3], 'v2' => [3,4]}, 'Basil' => {'v1' => [6,29], 'v2' => [8, 31]}} though I don't know if that would work (I don't see why not though)
Or you could make a method with case branches, as in
def get_actor (name)
case name
when 'Arshes'
return {'v1' => [2,3], 'v2' => [3,4]}
when 'Basil'
return {'v1' => [6,29], 'v2' => [8, 31]}
end
end
It seems like this is a fairly complicated structure. What are you planning?