Module: PlexSymlinker

Defined in:
lib/plex_symlinker.rb,
lib/plex_symlinker/symlink.rb,
lib/plex_symlinker/version.rb,
lib/plex_symlinker/operation.rb,
lib/plex_symlinker/file_types/mp3.rb,
lib/plex_symlinker/file_types/mp4.rb,
lib/plex_symlinker/file_types/audio_file.rb

Defined Under Namespace

Modules: FileTypes Classes: Error, Operation, Symlink

Constant Summary collapse

VERSION =
"0.1.1"

Class Method Summary collapse

Class Method Details

.loggerObject



26
27
28
# File 'lib/plex_symlinker.rb', line 26

def self.logger
  @logger ||= Logger.new(output)
end

.outputObject



18
19
20
# File 'lib/plex_symlinker.rb', line 18

def self.output
  @output ||= STDOUT
end

.output=(val) ⇒ Object



22
23
24
# File 'lib/plex_symlinker.rb', line 22

def self.output=(val)
  @output = val
end