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.56.0.beta.20170903010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.56.0.beta.20170902010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.56.0.beta.20170901010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.55.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.55.0.beta.20170831010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.4 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.55.0.beta.20170830010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.55.0.beta.20170829010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.3 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.55.0.beta.20170826010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.2 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.55.0.beta.20170825010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.55.0.beta.20170824010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.55.0.beta.20170823010002 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170822010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170821010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170820010003 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.54.0.beta.20170819010003 fastlane/lib/fastlane/supported_platforms.rb