Sha256: 140ef6eac06c3c19003a052a02db9293bae965a92b0222aaf1d3a1dc8d6fff30

Contents?: true

Size: 687 Bytes

Versions: 69

Compression:

Stored size: 687 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 plaforms are #{self.all}.")
      end
    end
  end
end

Version data entries

69 entries across 69 versions & 1 rubygems

Version Path
fastlane-2.18.0.beta.20170217010035 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.18.0.beta.20170216184940 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.17.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.17.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.16.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.15.1 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.16.0.beta.20170214010051 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.15.0 fastlane/lib/fastlane/supported_platforms.rb
fastlane-2.15.0.beta.20170213032052 fastlane/lib/fastlane/supported_platforms.rb