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.88.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.88.0.beta.20180327050037 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.88.0.beta.20180325050025 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.88.0.beta.20180324050059 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.87.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.87.0.beta.20180323050014 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.87.0.beta.20180322050115 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.2 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.87.0.beta.20180321050017 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.87.0.beta.20180320050108 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0.beta.20180319050058 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0.beta.20180318050106 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0.beta.20180317050040 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0.beta.20180316050051 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0.beta.20180315050105 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0.beta.20180314050053 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0.beta.20180313050023 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.86.0.beta.20180312050111 fastlane/lib/fastlane/supported_platforms.rb