Sha256: 892d483379b563f78e01fdb591d4720f1d15c02de2727fa0d28fe25ea49642f5

Contents?: true

Size: 689 Bytes

Versions: 657

Compression:

Stored size: 689 Bytes

Contents

module Fastlane
  class SupportedPlatforms
    class << self
      attr_accessor :extra
      attr_reader :default

      def extra=(value)
        value ||= []
        UI.important("Setting '#{value}' as extra SupportedPlatforms")
        @extra = value
      end
    end

    @default = [:ios, :mac, :android]
    @extra = []

    def self.all
      (@default + @extra).flatten
    end

    # this will log a warning if the passed platform is not supported
    def self.verify!(platform)
      unless all.include?(platform.to_s.to_sym)
        UI.important("Platform '#{platform}' is not officially supported. Currently supported platforms are #{self.all}.")
      end
    end
  end
end

Version data entries

657 entries across 657 versions & 5 rubygems

Version Path
fastlane-2.113.0.beta.20181220200101 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.113.0.beta.20181219200044 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.112.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.112.0.beta.20181218200038 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.112.0.beta.20181217200025 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.112.0.beta.20181216200018 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.112.0.beta.20181215200110 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.112.0.beta.20181214200045 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.111.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.111.0.beta.20181213200033 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.111.0.beta.20181213171204 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.111.0.beta.20181211193527 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.111.0.beta.20181211193027 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.110.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.109.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.109.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.108.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.107.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.106.2 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.106.1 fastlane/lib/fastlane/supported_platforms.rb