Compare commits

..

1 Commits

Author SHA1 Message Date
Nikita Mikryukov c4cf6a0704 added configuration adhoc api key 2025-11-12 14:01:25 +03:00
3 changed files with 4 additions and 3 deletions

View File

@ -266,7 +266,7 @@ def fill_up_options_using_configuration_type(options, configuration_type, keycha
# Check whether configuration type is required to configure one of api key parameters or not # Check whether configuration type is required to configure one of api key parameters or not
if configuration_type.is_app_store || configuration_type.is_development if configuration_type.is_app_store || configuration_type.is_development || configuration_type.is_adhoc
# Check whether API key JSON file exists or not # Check whether API key JSON file exists or not

@ -1 +1 @@
Subproject commit a8f072f216684bd7f5563c0211f71d6637a5f92d Subproject commit e591d65722d78918c84c4eeda3df8c4012e75323

View File

@ -18,6 +18,7 @@ module Touchlane
@is_app_store = type == APP_STORE @is_app_store = type == APP_STORE
@is_development = type == DEVELOPMENT @is_development = type == DEVELOPMENT
@is_adhoc = type == ADHOC
case type case type
when DEVELOPMENT when DEVELOPMENT
@ -43,7 +44,7 @@ module Touchlane
private_class_method :new private_class_method :new
attr_reader :export_method, :type, :configuration, :is_app_store, :is_development, :prefix attr_reader :export_method, :type, :configuration, :is_app_store, :is_development, :is_adhoc, :prefix
def self.from_lane_name(lane_name) def self.from_lane_name(lane_name)
case case