Compare commits

...

1 Commits

Author SHA1 Message Date
Nikita Mikryukov c4cf6a0704 added configuration adhoc api key 2025-11-12 14:01:25 +03:00
2 changed files with 3 additions and 2 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

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