Class: IML::Movie
Overview
Movie media file type class
Constant Summary collapse
- PLACEHOLDERS =
Formatting placeholders for Movies
{ '%T' => :title, '%Y' => :year, '%f' => :extension, '%v' => :codec, '%a' => :audio, '%g' => :group, '%z' => :source, '%q' => :quality }.freeze
- DEFAULT_FORMAT =
Default formatting string
'%T (%Y).%f'
Instance Attribute Summary
Attributes inherited from Base
#format_string, #prefix, #pretend
Instance Method Summary collapse
-
#movie? ⇒ Boolean
Always true for IML::Movie objects.
Methods inherited from Base
#basename, #create_dir, #dirname, #imdb, #initialize, #move, #pathname, #present
Constructor Details
This class inherits a constructor from IML::Base
Instance Method Details
#movie? ⇒ Boolean
Returns always true for IML::Movie objects.
21 22 23 |
# File 'lib/iml/movie.rb', line 21 def movie? true end |