Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Latest commit

 

History

History
41 lines (31 loc) · 1.32 KB

README.md

File metadata and controls

41 lines (31 loc) · 1.32 KB

PodHelper

(第一个的练手rust项目)

Cocoapods的一些帮助工具

编译

前提已安装rust

cargo install # 编译、安装
# or
cargo build --release # 仅编译

功能

  • pod_helper check [FLAGS] [OPTIONS] <FILE_PATH>
    • 检查podfile.lock中安装的库有哪些有最新版本(非本地pod repo数据对比, 访问相应的pod index查找)

结果以表格输出(检查时还会有个进度条)

$ pod_helper check Podfile.lock
request done.                                                                                                                                                                                  +-----------------+-------+-----------------------------+
| name            | ver   | new ver                     |
+=======================================================+
| UMCCommon       | 7.1.3 | not found or request failed |
|-----------------+-------+-----------------------------|
| SimpleStoreData | 0.1.2 | not found or request failed |
|-----------------+-------+-----------------------------|
| swiftScan       | 1.2.0 | not found or request failed |
|-----------------+-------+-----------------------------|
| MBProgressHUD   | 1.1.0 | 1.2.0                       |
+-----------------+-------+-----------------------------+

开源协议

MIT