In Sinatra application I have a code
gef '/123' do
@var1 = # some calculations
@var2 = # some calculations
#..... many of them
haml(:"view123")
end
and all of the instance variables are used in view123. I wonder, will there be any benefit of using the hash instead of many variables like this:
gef '/123' do
hash_var = {}
hash_var[:var1] = # some calculations
hash_var[:var2] = # some calculations
#..... many of them
haml(:"view123")
end