Class: Icemaker::Playlist::Icefile

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeIcefile

Returns a new instance of Icefile.



116
117
118
119
120
121
122
123
# File 'lib/icemaker/icemaker.rb', line 116

def initialize
  @sources = []
  @filters = []
  @verbose = DEFAULT_VERBOSE_VALUE
  @is_recursive = DEFAULT_RECURSIVE_VALUE
  @formatter = DEFAULT_FORMATTER
  @output_to_file = DEFAULT_PLAYLIST_FILE
end

Instance Attribute Details

#filtersObject

Returns the value of attribute filters.



114
115
116
# File 'lib/icemaker/icemaker.rb', line 114

def filters
  @filters
end

#formatterObject

Returns the value of attribute formatter.



114
115
116
# File 'lib/icemaker/icemaker.rb', line 114

def formatter
  @formatter
end

#is_recursiveObject

Returns the value of attribute is_recursive.



114
115
116
# File 'lib/icemaker/icemaker.rb', line 114

def is_recursive
  @is_recursive
end

#output_to_fileObject

Returns the value of attribute output_to_file.



114
115
116
# File 'lib/icemaker/icemaker.rb', line 114

def output_to_file
  @output_to_file
end

#sourcesObject

Returns the value of attribute sources.



114
115
116
# File 'lib/icemaker/icemaker.rb', line 114

def sources
  @sources
end

#verboseObject

Returns the value of attribute verbose.



114
115
116
# File 'lib/icemaker/icemaker.rb', line 114

def verbose
  @verbose
end