Method: KalturaBox::Entry.included

Defined in:
lib/kaltura_box/entry.rb

.included(base) ⇒ Object

Entry object should have the following attributes:

entry_id title description title description thumbnail_url data_url download_url ms_duration tags plays views



25
26
27
28
29
30
31
32
33
# File 'lib/kaltura_box/entry.rb', line 25

def self.included(base)
  base.extend ClassMethods
  base.class_eval do
    include InstanceMethods
    include ClassMethods
    include 
  end
  super
end