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.61.0.beta.20171005010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.61.0.beta.20171004010004 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0.beta.20171003010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0.beta.20171002010004 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0.beta.20171001010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0.beta.20170930010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0.beta.20170929010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0.beta.20170928010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0.beta.20170927010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.60.0.beta.20170926010004 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.59.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.59.0.beta.20170925010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.59.0.beta.20170924010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.59.0.beta.20170923010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.59.0.beta.20170922010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.59.0.beta.20170921010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.58.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.58.0.beta.20170920010003 fastlane/lib/fastlane/supported_platforms.rb