Class: Pindo::Command::Lib::Lint

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(argv) ⇒ Lint

Returns a new instance of Lint.



49
50
51
52
53
54
55
# File 'lib/pindo/command/lib/lint.rb', line 49

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



43
44
45
46
47
# File 'lib/pindo/command/lib/lint.rb', line 43

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

Instance Method Details

#podspecs_to_lintObject



122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/pindo/command/lib/lint.rb', line 122

def podspecs_to_lint
  if !@podspecs_paths.empty?
    Array(@podspecs_paths)
  else
    podspecs = Pathname.glob(Pathname.pwd + '*.podspec{.json,}')
    if podspecs.count.zero?
      raise Informative, 'Unable to find a podspec in the working ' \
        'directory'
    end
    podspecs
  end
end

#runObject



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
# File 'lib/pindo/command/lib/lint.rb', line 62

def run

    working_dir = @project_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

    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
    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
    private_source = sources.select { |s| s.git? && s.url.to_s.eql?(pod_index_url)}.first
    if private_source.nil?
        raise Informative, "私有Pod索引地址未知!"
    end



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

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

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

end

#validate!Object



57
58
59
60
# File 'lib/pindo/command/lib/lint.rb', line 57

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