Class: Pindo::Command::Lib::Push

Inherits:
Pindo::Command::Lib show all
Defined in:
lib/pindo/command/lib/push.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(argv) ⇒ Push

Returns a new instance of Push.



40
41
42
43
44
45
46
# File 'lib/pindo/command/lib/push.rb', line 40

def initialize(argv)
    @pod_spec_file = argv.shift_argument || nil
    @project_dir = argv.option('p')

    super(argv)
    @additional_args = argv.remainder!
end

Class Method Details

.optionsObject



34
35
36
37
38
# File 'lib/pindo/command/lib/push.rb', line 34

def self.options
    [
        ['--p', '指定需要lint的pod库所在目录, 例如 --p=~/Users/xxx/MyPod'],
    ].concat(super)
end

Instance Method Details

#runObject



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/pindo/command/lib/push.rb', line 53

def run

    working_dir = @project_dir
    process_need_add_files(project_dir:working_dir)

    podspecs = []
    if @pod_spec_file && (@pod_spec_file.to_s.end_with?('.podspec') || @pod_spec_file.to_s.end_with?('.json'))
        podspecs = [@pod_spec_file]
    else
        podspecs = Pathname.glob(File.join(working_dir, '*.podspec{.json,}'))
    end
    if podspecs.count.zero?
      raise Informative, '工作目录下没有任何podspec文件'
    end



    sources = Pod::Config.instance.sources_manager.all
    public_source = sources.select { |s| s.is_a?(Pod::CDNSource) }.first
    if public_source.nil?
        public_source = sources.select { |s| s.git? && s.url.to_s.include?("CocoaPods/Specs.git") }.first
    end
    if public_source.nil?
        raise Informative, '公有Pod地址未知,请pod install安装pod库'
    end


    pod_array = pindo_single_config.pod_repo_dict
    pod_index_url = nil
    if !pod_array.nil?
        pod_index_url = pod_array['podindex']
    else
        raise Informative, '私有Pod索引地址未知!!'
    end
    private_source = sources.select { |s| s.git? && s.url.to_s.eql?(pod_index_url)}.first
    if private_source.nil?
        raise Informative, "私有Pod索引地址未知!"
    end

    pod_index_url_header = pod_index_url.slice(0, pod_index_url.rindex('/'))
    pod_index_url_git_org = File.basename(pod_index_url_header)
    working_dir_git_url = git!(%W(-C #{working_dir} config --get remote.origin.url)).chomp
    working_dir_git_url_header = working_dir_git_url.slice(0, working_dir_git_url.rindex('/'))
    working_dir_git_org = File.basename(working_dir_git_url_header)
    if working_dir_git_org.include?(":")
        working_dir_git_org = working_dir_git_org.slice(working_dir_git_org.rindex(':')+1, working_dir_git_org.size())
    end


    puts "pod本地地址: #{working_dir}"
    puts "pod远程地址: #{working_dir_git_url}"
    puts "索引本地地址: #{private_source.repo}"
    puts "索引远程地址: #{private_source.url}"

    if pod_index_url_git_org != working_dir_git_org
        puts
        puts "索引库地址:#{pod_index_url_git_org}"
        puts "Pod库地址:#{working_dir_git_org}"
        answer = agree("私有Pod索引地址与工作目录不一致, 是否继续推送(Y/n):")
        unless answer
          raise Informative, "私有Pod索引地址与工作目录不一致!!!请使用pindo env 切换环境后再推送"
        end
    end



    puts "即将执行下列命令:"
    command_array = []
    podspecs.each do |podspec|
        command = "pod repo push #{private_source.name} --sources=#{private_source.url},#{public_source.url} --allow-warnings --use-libraries --use-modular-headers --verbose"
        puts
        puts command
        puts
        command_array << command
    end

    answer = agree("是否运行以上命令(Y/n):")
    unless answer
      raise Informative, "停止推送!!!"
    end

    puts "检查对应的tag 是否添加"
    podspecs.each do |podspec|
        puts
        puts podspec
        podspec_obj = Pod::Specification.from_file(podspec)
        pod_name = podspec_obj.name
        tag_name = podspec_obj.version
        add_tag_with_check(local_repo_dir:working_dir, tag_name:tag_name)
    end

    command_array.each do |command|
            puts "正在运行命令:"
            puts
            puts command
            system command
    end

end

#validate!Object



48
49
50
51
# File 'lib/pindo/command/lib/push.rb', line 48

def validate!
    super
    @project_dir=Dir.pwd if @project_dir.nil? || @project_dir.empty?
end