Sha256: 437846c6044c611d4bc4fa3c1f8f6acd85be87d3f8ab54b938b94000728f6026

Contents?: true

Size: 960 Bytes

Versions: 42

Compression:

Stored size: 960 Bytes

Contents

module Fastlane
  module Actions
    module SharedValues
      
    end

    class FastlaneVersionAction < Action
      def self.run(params)
        defined_version = ((Gem::Version.new(params.first) if params.first) rescue nil)
        raise "Please pass minimum fastlane version as parameter to fastlane_version".red unless defined_version

        if Gem::Version.new(Fastlane::VERSION) < defined_version
          raise "The Fastfile requires a fastlane version of >= #{defined_version}. You are on #{Fastlane::VERSION}. Please update using `sudo gem update fastlane`.".red
        end

        Helper.log.info "fastlane version valid"
      end

      def self.step_text
        "Verifying required fastlane version"
      end

      def self.author
        "KrauseFx"
      end

      def self.description
        "Verifies the minimum fastlane version required"
      end

      def self.is_supported?(platform)
        true
      end
    end
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
fastlane-0.12.0 lib/fastlane/actions/fastlane_version.rb
fastlane-0.11.0 lib/fastlane/actions/fastlane_version.rb