Sha256: 892d483379b563f78e01fdb591d4720f1d15c02de2727fa0d28fe25ea49642f5

Contents?: true

Size: 689 Bytes

Versions: 656

Compression:

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

656 entries across 656 versions & 5 rubygems

Version Path
fastlane-2.225.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.224.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.223.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.223.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.222.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.221.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.221.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.220.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.219.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.218.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-security-patched-2.216.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.217.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.216.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.215.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.215.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-mercafacil-2.214.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.214.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.213.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.212.2 fastlane/lib/fastlane/supported_platforms.rb
fastlane_pricing_fix-2.212.1 fastlane/lib/fastlane/supported_platforms.rb