Class: Tagmv::Entry

Inherits:
Object
  • Object
show all
Defined in:
lib/tagmv/entry.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ Entry

Returns a new instance of Entry.



4
5
6
7
# File 'lib/tagmv/entry.rb', line 4

def initialize(opts={})
  @tags = opts[:tags]
  @files = opts[:files]
end

Instance Attribute Details

#filesObject

Returns the value of attribute files.



3
4
5
# File 'lib/tagmv/entry.rb', line 3

def files
  @files
end

#tagsObject

Returns the value of attribute tags.



3
4
5
# File 'lib/tagmv/entry.rb', line 3

def tags
  @tags
end