Sha256: acc88fd74dae2b4f061070b94d7922c09f85b90120ade646ac876a07e87ff4ba

Contents?: true

Size: 858 Bytes

Versions: 575

Compression:

Stored size: 858 Bytes

Contents

module Fastlane
  module Actions
    class NotifyAction < Action
      def self.run(params)
        require 'terminal-notifier'
        UI.important("It's recommended to use the new 'notification' method instead of 'notify'")

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

      def self.description
        "Shows a macOS notification - use `notification` instead"
      end

      def self.author
        ["champo", "KrauseFx"]
      end

      def self.available_options
      end

      def self.is_supported?(platform)
        Helper.mac?
      end

      def self.example_code
        []
      end

      def self.category
        :deprecated
      end

      def self.deprecated_notes
        "It's recommended to use the new 'notification' method instead of 'notify'"
      end
    end
  end
end

Version data entries

575 entries across 575 versions & 1 rubygems

Version Path
fastlane-2.29.0.beta.20170502010055 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170501010050 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170430010051 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.28.7 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170429010036 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.28.6 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170428010037 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170427010043 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.28.5 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170426010043 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.28.4 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170425010038 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170424010049 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170423010015 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170422010059 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.28.3 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.29.0.beta.20170421010107 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.28.2 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.28.1 fastlane/lib/fastlane/actions/notify.rb
fastlane-2.28.0 fastlane/lib/fastlane/actions/notify.rb