5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/upload.rb', line 5
def initialize
@spec_name = "ios_sohu_spec"
@spec_url = "[email protected]:mtpc_sh_ios/ios_sohu_spec.git"
@framework_url = "[email protected]:MOBILE-BASIC/SoHuHost.git"
@sohu_host_project_name = "SoHuHost"
@framework_localPath = File.expand_path(File.join("..", "#{@sohu_host_project_name}"), Dir.pwd)
@podspec_name = "#{@sohu_host_project_name}.podspec"
@spec_path = File.expand_path(File.join("#{@framework_localPath}", "#{@podspec_name}"), Dir.pwd)
@product_type = Flutter::Config.instance.config
@product_map = { 1 => "Debug", 2 => "Profile", 3 => "Release" }
@origin_products = []
end
|