Sha256: 91953892b1a848d42b7ca308df6a53d2fe0212eeee9e6ba85eb94346898bde2a

Contents?: true

Size: 276 Bytes

Versions: 5

Compression:

Stored size: 276 Bytes

Contents

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
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fastlane-0.10.0 lib/fastlane/actions/say.rb
fastlane-0.9.0 lib/fastlane/actions/say.rb
fastlane-0.8.1 lib/fastlane/actions/say.rb
fastlane-0.8.0 lib/fastlane/actions/say.rb
fastlane-0.7.0 lib/fastlane/actions/say.rb