Class: Pindo::TaskSystem::IosDevBuildTask
- Defined in:
- lib/pindo/module/task/model/build/ios_dev_build_task.rb
Overview
iOS Dev 模式构建任务使用 Development 证书编译 iOS 工程
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from BuildTask
#mode, #output_path, #platform, #project_path
Attributes inherited from PindoTask
#callbacks_setup, #context, #created_at, #dependencies, #error, #finished_at, #id, #max_retry_count, #metadata, #name, #priority, #result, #retry_count, #retry_delay, #retry_mode, #started_at, #status, #type
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ IosDevBuildTask
constructor
A new instance of IosDevBuildTask.
Methods inherited from BuildTask
create_android_task, create_ios_task, create_task, create_web_task, default_retry_count, default_retry_delay, default_retry_mode, normalize_mode, normalize_platform, task_type
Methods inherited from PindoTask
#before_retry, #cancel, #cancelled?, #check_cancelled!, default_retry_count, default_retry_delay, default_retry_mode, #do_task, #execution_time, #finished?, #on, #reset_for_retry, #retryable?, #running?, #should_retry?, task_type, #validate
Constructor Details
#initialize(options = {}) ⇒ IosDevBuildTask
Returns a new instance of IosDevBuildTask.
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/pindo/module/task/model/build/ios_dev_build_task.rb', line 14 def initialize( = {}) @bundle_id = [:bundle_id] @proj_name = [:proj_name] @upload_flag = [:upload] || false @send_flag = [:send] || false @macos_flag = false # 接收外部传入的 JPS 配置 @app_info_obj = [:app_info_obj] @workflow_info = [:workflow_info] # 保存 Unity 根目录路径(用于查找 config.json) @unity_root_path = [:unity_root_path] super(:ios, :dev, ) end |