Class: MediaArtsDb::Comic::ComicWork
- Defined in:
- lib/media_arts_db/comic/component.rb
Overview
NOTE: すべてのコンポーネントをComponentクラスだけで表現することも可能であるが、 コンポーネントを区別する手段として一番わかり易いのがクラスを分けることだと思うので、 冗長ではあるがコンポーネントの種類ごとにクラスを作成する。
Instance Attribute Summary
Attributes inherited from Component
Instance Method Summary collapse
-
#initialize(id, content = {}, retrieved = false) ⇒ ComicWork
constructor
A new instance of ComicWork.
Methods inherited from Component
#[], #content, #content_cache, #method_missing
Constructor Details
#initialize(id, content = {}, retrieved = false) ⇒ ComicWork
Returns a new instance of ComicWork.
53 54 55 56 |
# File 'lib/media_arts_db/comic/component.rb', line 53 def initialize(id, content = {}, retrieved = false) super(id, content, retrieved) @retriever = FindComicWork.new(@id) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class MediaArtsDb::Comic::Component