Sha256: 4eec4b6021157f93719ad3334c88d31dfc96886e0a8d9374dbea082ae10d7a9f

Contents?: true

Size: 1.88 KB

Versions: 62

Compression:

Stored size: 1.88 KB

Contents

require_relative '../model'
module Spaceship
  class ConnectAPI
    class BuildBetaDetail
      include Spaceship::ConnectAPI::Model

      attr_accessor :auto_notify_enabled
      attr_accessor :did_notify
      attr_accessor :internal_build_state
      attr_accessor :external_build_state

      module InternalState
        PROCESSING = "PROCESSING"
        PROCESSING_EXCEPTION = "PROCESSING_EXCEPTION"
        MISSING_EXPORT_COMPLIANCE = "MISSING_EXPORT_COMPLIANCE"
        READY_FOR_BETA_TESTING = "READY_FOR_BETA_TESTING"
        IN_BETA_TESTING = "IN_BETA_TESTING"
        EXPIRED = "EXPIRED"
        IN_EXPORT_COMPLIANCE_REVIEW = "IN_EXPORT_COMPLIANCE_REVIEW"
      end

      module ExternalState
        PROCESSING = "PROCESSING"
        PROCESSING_EXCEPTION = "PROCESSING_EXCEPTION"
        MISSING_EXPORT_COMPLIANCE = "MISSING_EXPORT_COMPLIANCE"
        READY_FOR_BETA_TESTING = "READY_FOR_BETA_TESTING"
        IN_BETA_TESTING = "IN_BETA_TESTING"
        EXPIRED = "EXPIRED"
        READY_FOR_BETA_SUBMISSION = "READY_FOR_BETA_SUBMISSION"
        IN_EXPORT_COMPLIANCE_REVIEW = "IN_EXPORT_COMPLIANCE_REVIEW"
        WAITING_FOR_BETA_REVIEW = "WAITING_FOR_BETA_REVIEW"
        IN_BETA_REVIEW = "IN_BETA_REVIEW"
        BETA_REJECTED = "BETA_REJECTED"
        BETA_APPROVED = "BETA_APPROVED"
      end

      attr_mapping({
        "autoNotifyEnabled" => "auto_notify_enabled",
        "didNotify" => "did_notify",
        "internalBuildState" => "internal_build_state",
        "externalBuildState" => "external_build_state"
      })

      def self.type
        return "buildBetaDetails"
      end

      #
      # Helpers
      #
      #
      def ready_for_internal_testing?
        return internal_build_state == InternalState::READY_FOR_BETA_TESTING
      end

      def ready_for_beta_submission?
        return external_build_state == ExternalState::READY_FOR_BETA_SUBMISSION
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
fastlane-2.150.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.150.0.rc7 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.150.0.rc6 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.150.0.rc5 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.150.0.rc4 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.150.0.rc3 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.150.0.rc2 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.150.0.rc1 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.149.1 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.149.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.148.1 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.148.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.147.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.146.1 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.146.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.145.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.144.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.143.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.142.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.141.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb