2020-12-01から1ヶ月間の記事一覧

CocoaPods で「Your project does not explicitly specify the CocoaPods master specs repo...」の警告が出る

pod のコマンドを実行した時、以下の警告が表示されるようになった。 [!] Your project does not explicitly specify the CocoaPods master specs repo. Since CDN is now used as the default, you may safely remove it from your repos directory via `po…

Apple Archive フレームワークを使って LZFSE の CLI ツールを作った

macOS 11.0(Big Sur)、iOS 14 から Apple Archive Framework が使えるようになった。 Apple Archive Framework Apple Archive Framework では Apple によって開発された LZFSE アルゴリズムの圧縮・展開ができる。 LZFSE 試しにこの Apple Archive Framewo…

macOS Big Sur(macOS 11)からはコマンドで Apple Archive の圧縮・展開ができる。

macOS Big Sur からはコマンドで Apple Archive (aar や lzfse)の圧縮・展開ができるみたい。 以下、コマンドの例。 単体ファイルの圧縮 % aa archive -i alice29.txt -o alice29.txt.lzfse -a lzfse alice29.txt を圧縮した alice29.txt.lzfse を生成する…