I am struggling with time zone support in Rails 3 beta and I would like to know if it is a bug or if I am doing something wrong. He is the problem:
> Time.zone = 'Madrid' # it is GMT+2
= "Madrid"
>
c = Comment.new
= #<Comment id: nil, title: "", pub_at: nil>
>
c.pub_at = Time.zone.parse('10:00:00')
= Mon, 31 May 2010 10:00:00
…