lib/fastlane/actions/say.rb



module Fastlane
  module Actions
    class SayAction < Action
      def self.run(params)
        text = params.join(' ')
        Actions.sh("say '#{text}'")
      end

      def self.description
        "This action speaks out loud the given text"
      end

      def self.is_supported?(platform)
        true
      end

      def self.author
        "KrauseFx"
      end
    end
  end
end