Daylight Saving Time start and end dates in Ruby/Rails
I'm working on a Rails app where I need to find the Daylight Saving Time start and end dates given a specific offset or timezone. I basically save in my database the timezone offset received from a user's browser( "+3" , "-5" ) and I want to modify it when it changes because of daylight saving time. I know Time instance variables have the dst? and isdst methods which return true or false if the date stored in them is in the daylight saving time or not. > Time.new.isdst => true But using this to find the Daylight Saving Time beginning and end dates would take too many resources and I also have