Sha256: 142b3c32421747136e0807f259b977f09328c54f0df0a8eb32a324a1d1554559

Contents?: true

Size: 777 Bytes

Versions: 5

Compression:

Stored size: 777 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

    def determine_version(name)
      super(name) || Fastlane::VERSION
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fastlane-1.92.0 lib/fastlane/action_collector.rb
fastlane-1.91.0 lib/fastlane/action_collector.rb
fastlane-1.90.0 lib/fastlane/action_collector.rb
fastlane-1.89.0 lib/fastlane/action_collector.rb
fastlane-1.88.0 lib/fastlane/action_collector.rb