Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To satisfy an ancient standard, called EDI mscons, I need all times in my time zone (UTC +1), always standard time (=winter time), never summer time. rails console:

$ t = Time.zone.now
 => Tue, 31 Jul 2012 09:54:41 CEST +02:00 
$ t.utc.strftime('%y%m%d:%H%M')
 => "120731:0754" 
$ t.strftime('%y%m%d:%H%M')
 => "120731:0954" 

# I need the value in between these, at 8. Like this:"
  "120731:0854"

$ t.strftime('%y%m%d:%H%M %Z %z')
 => "120731:0954 CEST +0200" 
$ t.utc.strftime('%y%m%d:%H%M %Z %z')
 => "120731:0754 UTC +0000" 
$ t.iso8601
 => "2012-07-31T09:54:41+02:00"

How do I get the UTC standard time for my zone?

FYI: Ruby 1.9, rails 3.1

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.