Class: When::V::Calendar
- Inherits:
-
Root
- Object
- BasicTypes::Object
- Root
- When::V::Calendar
- Defined in:
- lib/when_exe/icalendar.rb
Overview
ひとつの ics 形式ファイルをまとめて保持する
BEGIN:VCALENADR...END:VCALENDAR のブロックに対応
Constant Summary collapse
- Properties =
[['prodid', 'version'], [], ['method'], [], []]
- Classes =
nil
Constants inherited from Root
Root::AwareProperties, Root::DefaultOptional, Root::DefaultUnique
Constants included from Parts::Resource
Parts::Resource::ConstList, Parts::Resource::ConstTypes, Parts::Resource::IRIHeader, Parts::Resource::LabelProperty
Instance Attribute Summary collapse
-
#child ⇒ Object
readonly
Returns the value of attribute child.
Attributes inherited from Root
Attributes inherited from BasicTypes::Object
Attributes included from Parts::Resource
#_pool, #keys, #locale, #namespace
Instance Method Summary collapse
- #_enumerator_list(args) ⇒ Object
-
#intersection(keys = {}) ⇒ When::V::Calendar
(also: #subset)
When::V::Event の検索.
Methods inherited from Root
Methods included from Parts::Resource
#[], #^, _abbreviation_to_iri, _decode, _encode, _extract_prefix, _instance, _instantiate, _parse, _path_with_prefix, _replace_tags, _setup_, _setup_info, _simplify_path, base_uri, #each, #enum_for, #hierarchy, #include?, #included?, #iri, #leaf?, #m17n, #map, #next, #parent, #prev, #registered?, root_dir
Methods included from Parts::Resource::Pool
#[], #[]=, #_pool, #_setup_, #pool_keys
Methods included from Parts::Resource::Synchronize
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class When::Parts::Resource
Instance Attribute Details
#child ⇒ Object
Returns the value of attribute child.
478 479 480 |
# File 'lib/when_exe/icalendar.rb', line 478 def child @child end |
Instance Method Details
#_enumerator_list(args) ⇒ Object
507 508 509 510 511 |
# File 'lib/when_exe/icalendar.rb', line 507 def _enumerator_list(args) (@child.reject {|el| !el.kind_of?(Event)}).inject([]) { |sum, ev| sum += ev._enumerator_list(args) } end |
#intersection(keys = {}) ⇒ When::V::Calendar Also known as: subset
When::V::Event の検索
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 |
# File 'lib/when_exe/icalendar.rb', line 488 def intersection(keys={}) copy = self.dup copy.child = @child.select {|ev| if ev.kind_of?(Event) keys.each_pair do |key, value| case value when String ; break unless ev.property[key].object.index(value) when Regexp ; break unless (ev.property[key].object =~ value) end end else true end } return copy end |