I am trying to get this going where i have this build array and then I
have an array of hashes named after the items in the build. Depending
upon what is in the array, I want to read the arrays of hashes. I
wrote
this simple script, but does not work. Any solns
build = [ "log " ,
          "top"  ]


log = [

     { 'where'                    =>  '/home/des/blocks/where.rb'},
     { 'when'                     =>  '/home/des/blocks/when.rb'},
     { 'bank'                     =>  '/home/des/blocks/bank.rb'}
]
top = [

     { 'where'                    =>  '/home/top/blocks/where.rb'},
     { 'when'                     =>  '/home/top/blocks/when.rb'},
     { 'bank'                     =>  '/home/top/blocks/bank.rb'}
]


build.each{ |bu|
    puts bu
    bu.each{ |files|
      puts files

}}

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to