Sha256: 5890e3def9e4e449ead9be8f6d9ad17cd498c9a94fd7811135ce65a738f77454

Contents?: true

Size: 405 Bytes

Versions: 23

Compression:

Stored size: 405 Bytes

Contents

require "active_support/core_ext/string/conversions"
require "active_support/core_ext/time/zones"

class String
  # Converts String to a TimeWithZone in the current zone if Time.zone or Time.zone_default
  # is set, otherwise converts String to a Time via String#to_time
  def in_time_zone(zone = ::Time.zone)
    if zone
      ::Time.find_zone!(zone).parse(self)
    else
      to_time
    end
  end
end

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
activesupport-5.1.7 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.7.rc1 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.6.2 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.6.1 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.6 lib/active_support/core_ext/string/zones.rb
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/core_ext/string/zones.rb
activesupport-5.1.5 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.5.rc1 lib/active_support/core_ext/string/zones.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/zones.rb
activesupport-5.1.4 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.4.rc1 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.3 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.3.rc3 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.3.rc2 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.3.rc1 lib/active_support/core_ext/string/zones.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/string/zones.rb
activesupport-5.1.2 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.2.rc1 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.1 lib/active_support/core_ext/string/zones.rb
activesupport-5.1.0 lib/active_support/core_ext/string/zones.rb