I am building a Sinatra site which has mixed UTC/PST data sources, but will be viewed in PST. So I need a way to easily convert Time objects from UTC to PST. Without Rails, I d
In Pure Ruby
Time.now.utc.localtime("+05:30")
where +05:30 (IST) is the offset of the particular zone