Sha256: 5afeb2c2f8c3b1ee297d751263dbc652268fd3ae92f84c20e447f402744abede
Contents?: true
Size: 848 Bytes
Versions: 1
Compression:
Stored size: 848 Bytes
Contents
module RiCal module CoreExtensions #:nodoc: module Date #:nodoc: #- ©2009 Rick DeNatale #- All rights reserved. Refer to the file README.txt for the license # module Conversions # Return an RiCal::PropertyValue::DateTime representing the receiver def to_ri_cal_date_time_value RiCal::PropertyValue::DateTime.new(nil, :value => self) end # Return an RiCal::PropertyValue::Date representing the receiver def to_ri_cal_date_value RiCal::PropertyValue::Date.new(nil, :value => self) end alias_method :to_ri_cal_date_or_date_time_value, :to_ri_cal_date_value # Return the natural ri_cal_property for this object def to_ri_cal_property_value to_ri_cal_date_value end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubyredrick-ri_cal-0.0.2 | lib/ri_cal/core_extensions/date/conversions.rb |