Sha256: a170a13e5a131233919e2626241f3f36a4a9590920bacfd8657a9e8b015566f0

Contents?: true

Size: 237 Bytes

Versions: 9

Compression:

Stored size: 237 Bytes

Contents

module Fastlane
  module Actions
    class NotifyAction
      def self.run(params)
        require 'terminal-notifier'

        text = params.join(' ')
        TerminalNotifier.notify(text, title: 'fastlane')
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fastlane-0.6.1 lib/fastlane/actions/notify.rb
fastlane-0.6.0 lib/fastlane/actions/notify.rb
fastlane-0.5.0 lib/fastlane/actions/notify.rb
fastlane-0.4.2 lib/fastlane/actions/notify.rb
fastlane-0.4.1 lib/fastlane/actions/notify.rb
fastlane-0.4.0 lib/fastlane/actions/notify.rb
fastlane-0.3.0 lib/fastlane/actions/notify.rb
fastlane-0.2.1 lib/fastlane/actions/notify.rb
fastlane-0.2.0 lib/fastlane/actions/notify.rb