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.27.0.beta.20170409010031 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.26.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.27.0.beta.20170408010009 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.27.0.beta.20170407010056 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.26.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.26.0.beta.20170406010019 fastlane/lib/fastlane/supported_platforms.rb