smileart/mac-say

View on GitHub
lib/mac/say/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# Wrapper namespace module for a Say class
module Mac
  # A class wrapper around the MacOS `say` command
  # Allows to use simple TTS on Mac right from Ruby scripts
  class Say
    # mac-say version
    VERSION = '0.2.1'
  end
end