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