Prev: Loops
Next: ruby update from 1.8.6 to 1.8.7
From: Jule Nissen on 8 Aug 2010 04:42 Posted this in the rails group, but didn't get an answer yet. maybe you can help me? Hi! I'm trying to create a nested hash which should hold the dates in my database as a kind of calendar. What I did so far is obviously wrong, because I'm storing the week-number for every day in the week array. I don't really understand nested hashes and can't find the solution. what am I doing wrong here?? What's the right way of doing this?? 11 @calendar = Hash.new{|h,k| h[k]=Hash.new(&h.default_proc) } 12 week = [] 13 Dates.find(:all).each do |row| 14 date = Date.strptime(str="#{row.dato}") 15 year = date.cwyear 16 month = date.mon 17 week << date.cweek 18 @calendar[year][month] = week 19 end thanks in advance, floke -- Posted via http://www.ruby-forum.com/.
|
Pages: 1 Prev: Loops Next: ruby update from 1.8.6 to 1.8.7 |