Sha256: 0014d2ab3397b1f788c2d4b617b03a174741034b8280057b7ad63d0fe6a64e27

Contents?: true

Size: 697 Bytes

Versions: 6

Compression:

Stored size: 697 Bytes

Contents

module Fastlane
  class ActionCollector < FastlaneCore::ToolCollector
    def is_official?(name)
      return true if name == :lane_switch
      Actions.get_all_official_actions.include? name
    end

    def show_message
      UI.message("Sending Crash/Success information. More information on: https://github.com/fastlane/enhancer")
      UI.message("No personal/sensitive data is sent. Only sharing the following:")
      UI.message(launches)
      UI.message(@error) if @error
      UI.message("This information is used to fix failing actions and improve integrations that are often used.")
      UI.message("You can disable this by adding `opt_out_usage` to your Fastfile")
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fastlane-1.87.1 lib/fastlane/action_collector.rb
fastlane-1.87.0 lib/fastlane/action_collector.rb
fastlane-1.86.1 lib/fastlane/action_collector.rb
fastlane-1.86.0 lib/fastlane/action_collector.rb
fastlane-1.85.0 lib/fastlane/action_collector.rb
fastlane-1.84.0 lib/fastlane/action_collector.rb