I have a Tweet object from the twitter gem, called @tweet
.
I am able to do:
@tweet.created_at --> `@tweet.created_at.class` outputs `Time`
However, I want to change the timezone of created_at
, so I tried:
@tweet.created_at.utc
And got:
can't modify frozen Time
How would I change from UTC−08:00 that my current created_at
is, to CET time?