Sha256: 0095be543a20a586fc315385be45e7e77e243d693a22c996d15319d77006fcdc

Contents?: true

Size: 448 Bytes

Versions: 26

Compression:

Stored size: 448 Bytes

Contents

class String

  def to_time
    require 'time'
    Time.parse(self)
  end

end


#  _____         _
# |_   _|__  ___| |_
#   | |/ _ \/ __| __|
#   | |  __/\__ \ |_
#   |_|\___||___/\__|
#
=begin test

  require 'test/unit'

  class TCString < Test::Unit::TestCase

    def test_to_time
      s = "2:31:15 PM"
      t = s.to_time
      assert_equal( 14, t.hour )
      assert_equal( 31, t.min )
      assert_equal( 15, t.sec )
    end

  end

=end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
facets-1.0.0 lib/facet/string/to_time.rb
facets-0.9.0 lib/nano/string/to_time.rb
facets-1.0.3 packages/core/lib/facet/string/to_time.rb
facets-1.2.1 lib/facets/core/string/to_time.rb
facets-1.2.0 lib/facets/core/string/to_time.rb
facets-1.3.0 lib/facets/core/string/to_time.rb
facets-1.1.0 lib/facet/string/to_time.rb
facets-1.3.1 lib/facets/core/string/to_time.rb
facets-1.3.3 lib/facets/core/string/to_time.rb
facets-1.3.2 lib/facets/core/string/to_time.rb
facets-1.4.2 lib/facets/core/string/to_time.rb
facets-1.4.0 lib/facets/core/string/to_time.rb
facets-1.4.1 lib/facets/core/string/to_time.rb
facets-1.4.3 lib/facets/core/string/to_time.rb
facets-1.4.5 lib/facets/core/string/to_time.rb
facets-1.4.4 lib/facets/core/string/to_time.rb
facets-1.7.0 lib/facets/core/string/to_time.rb
facets-1.7.30 lib/facets/core/string/to_time.rb
facets-1.7.38 lib/facets/core/string/to_time.rb
facets-1.7.46 lib/facets/core/string/to_time.rb