sorry I pasted the wrong test , but the result is the same 

 Time.use_zone("Europe/London"){ Time.new(2012, 12, 3, 9, 30, 
0).in_time_zone }
Mon, 03 Dec 2012 08:30:00 GMT +00:00   # => I want 9:30 GMT there

(rdb:1)  Time.use_zone("Europe/Paris"){ Time.new(2012, 12, 3, 9, 30, 
0).in_time_zone }
Mon, 03 Dec 2012 09:30:00 CET +01:00


Le lundi 3 décembre 2012 12:10:34 UTC+1, Erwin a écrit :
>
> I am storing a Time record w a timezone like :       an event at 9:30 in 
> Paris time    
>
> (rdb:1)  Time.zone = "Europe/Paris"
> "Europe/Paris"
> (rdb:1) Time.new(2012, 12, 3, 9, 30, 0).in_time_zone("Europe/Paris")
> Mon, 03 Dec 2012 09:30:00 CET +01:00
>
> Now I want to store another event occurring also at 9:30 but in London time
> /London"
> (rdb:1) Time.new(2012, 12, 3, 9, 30, 0).in_time_zone("Europe/London")
> Mon, 03 Dec 2012 08:30:00 GMT +00:00
>
> which is wrong ....  I want this event at 9:30 GMT !!
>
> what's wrong there ?
> thanks for feedback
>
>

-- 
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].
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/f4lSVyEzEtcJ.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to