Module: GoogleSpeech

Defined in:
lib/google_speech.rb,
lib/google_speech/chunk.rb,
lib/google_speech/utility.rb,
lib/google_speech/version.rb,
lib/google_speech/transcriber.rb,
lib/google_speech/chunk_factory.rb

Defined Under Namespace

Classes: Chunk, ChunkFactory, Transcriber, Utility

Constant Summary collapse

TMP_FILE_DIR =
ENV['GOOGLE_SPEECH_TMP_DIR'] || '/tmp/'
VERSION =
"0.4.1"

Class Method Summary collapse

Class Method Details

.loggerObject



10
11
12
# File 'lib/google_speech.rb', line 10

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

.logger=(l) ⇒ Object



14
15
16
# File 'lib/google_speech.rb', line 14

def self.logger=(l)
  @_logger = l
end