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.54.0.beta.20170818010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170817010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170816010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170815010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170814010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170813010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170812010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170811010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.53.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.53.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.53.0.beta.20170810010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.52.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.52.0.beta.20170809010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.52.0.beta.20170808010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.51.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.51.0.beta.20170807010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.51.0.beta.20170806010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.51.0.beta.20170805010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.51.0.beta.20170804010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.51.0.beta.20170803010003 fastlane/lib/fastlane/supported_platforms.rb