Parent

DateTime

Public Instance Methods

to_datetime() click to toggle source
    # File lib/extlib/datetime.rb, line 26
26:   def to_datetime
27:     self
28:   end
to_datetime click to toggle source

Return receiver (for DateTime/Time conversion protocol).

  DateTime.now.to_datetime    #=> #<DateTime: 212093913977/86400,-1/3,2299161>

@return [DateTime] Receiver

@api public

    # File lib/extlib/datetime.rb, line 25
25:   remove_method :to_datetime if instance_methods(false).any? { |m| m.to_sym == :to_datetime }
to_time() click to toggle source
    # File lib/extlib/datetime.rb, line 13
13:   def to_time
14:     Time.parse self.to_s
15:   end
to_time click to toggle source

Convert to Time object (for DateTime/Time conversion protocol).

  DateTime.now.to_time    #=> Wed Nov 19 20:04:51 -0800 2008

@return [Time] Time object representing the same moment as receiver

@api public

    # File lib/extlib/datetime.rb, line 12
12:   remove_method :to_time if instance_methods(false).any? { |m| m.to_sym == :to_time }

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.