Method: RiCal::Properties::Journal#==
- Defined in:
- lib/ri_cal/properties/journal.rb
#==(o) ⇒ Object
:nodoc:
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 |
# File 'lib/ri_cal/properties/journal.rb', line 1156 def ==(o) #:nodoc: if o.class == self.class (rdate_property == o.rdate_property) && (contact_property == o.contact_property) && (exdate_property == o.exdate_property) && (created_property == o.created_property) && (status_property == o.status_property) && (dtstart_property == o.dtstart_property) && (recurrence_id_property == o.recurrence_id_property) && (dtstamp_property == o.dtstamp_property) && (categories_property == o.categories_property) && (last_modified_property == o.last_modified_property) && (attendee_property == o.attendee_property) && (uid_property == o.uid_property) && (description_property == o.description_property) && (url_property == o.url_property) && (summary_property == o.summary_property) && (organizer_property == o.organizer_property) && (rrule_property == o.rrule_property) && (attach_property == o.attach_property) && (class_property == o.class_property) && (request_status_property == o.request_status_property) && ( == o.) && (exrule_property == o.exrule_property) && (comment_property == o.comment_property) && (sequence_property == o.sequence_property) else super end end |