Sha256: 28f56b8acd1297e162b4072230ee9a01e3d8b8748e0d34fb7088d4fd17b857b1

Contents?: true

Size: 688 Bytes

Versions: 366

Compression:

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

366 entries across 366 versions & 1 rubygems

Version Path
fastlane-2.33.0.beta.20170520010019 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.32.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.33.0.beta.20170519010039 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.32.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.32.0.beta.20170518010031 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.31.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.31.0.beta.20170517010031 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.31.0.beta.20170516010048 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.31.0.beta.20170515010044 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.31.0.beta.20170514010036 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.31.0.beta.20170513010043 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.30.2 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.31.0.beta.20170512010054 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.30.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.30.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.29.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.30.0.beta.20170511010018 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.30.0.beta.20170510010041 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.29.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.29.0.beta.20170509010055 fastlane/lib/fastlane/supported_platforms.rb