2

https://guides.cocoapods.org/making/using-pod-lib-createのすべての手順に従って、オープンソース ライブラリを cocoapds で利用できるようにしました。pod lib lintrunコマンドを発行する前の手順の最後で、テストに合格しました。

 -> SHMultipleSelect (0.1.0)

SHMultipleSelect passed validation.

しかし、pod spec lintコマンドでエラーが発生します:

[!] /usr/bin/git clone https://github.com/<GITHUB_USERNAME>/SHMultipleSelect.git /var/folders/fn/49fp5hx941541w0ncv5n28_h0000gn/T/d20150723-39741-1esoisq --single-branch --depth 1 --branch 0.1.0

Cloning into '/var/folders/fn/49fp5hx941541w0ncv5n28_h0000gn/T/d20150723-39741-1esoisq'...
fatal: unable to access 'https://github.com/<GITHUB_USERNAME>/SHMultipleSelect.git/': The requested URL returned error: 400

stackoverflow でエラーを検索したところ、このCan't update my pod library が見つかりました。pod spec lint SHMultipleSelect.podspec受け入れられた回答が言うようにコマンドを実行すると、別のエラーが発生しました:

[!] /usr/bin/git clone https://github.com/Shamsiddin/SHMultipleSelect.git /var/folders/fn/49fp5hx941541w0ncv5n28_h0000gn/T/d20150723-39842-774kfl --single-branch --depth 1 --branch 0.1.0

Cloning into '/var/folders/fn/49fp5hx941541w0ncv5n28_h0000gn/T/d20150723-39842-774kfl'...
warning: Could not find remote branch 0.1.0 to clone.
fatal: Remote branch 0.1.0 not found in upstream origin
Unexpected end of command stream

私の問題を解決することは明確ではありません。誰かが私にどこへ行くべきかを教えてもらえますか?

これが私のライブラリの Git URL です: https://github.com/Shamsiddin/SHMultipleSelect

そして私のライブラリの .podspec ファイル:

#
# Be sure to run `pod lib lint SHMultipleSelect.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
  s.name             = "SHMultipleSelect"
  s.version          = "0.1.0"
  s.summary          = "An easy-to-use multiple selection view."
  s.description      = <<-DESC
                       An easy-to-use multiple selection view for iOS 7+.
                       DESC
  s.homepage         = "https://github.com/Shamsiddin/SHMultipleSelect"
  # s.screenshots     = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
  s.license          = 'MIT'
  s.author           = { "Shamsiddin" => "shamsiddin.saidov@gmail.com" }
  s.source           = { :git => "https://github.com/Shamsiddin/SHMultipleSelect.git", :tag => s.version.to_s }
  # s.social_media_url = 'https://twitter.com/Shamsiddin_Said'

  s.platform     = :ios, '7.0'
  s.requires_arc = true

  s.source_files = 'Pod/Classes/**/*'
  s.resource_bundles = {
    'SHMultipleSelect' => ['Pod/Assets/*.png']
  }

  # s.public_header_files = 'Pod/Classes/**/*.h'
  # s.frameworks = 'UIKit', 'MapKit'
  # s.dependency 'AFNetworking', '~> 2.3'
end

編集1:

Github リポジトリでタグを作成していないことがわかりました。バージョンでタグを作成し、コマンドを再度0.1.0実行しました。pod spec lint SHMultipleSelect.podspec今、それは私に別のエラーを与えています:

 -> SHMultipleSelect (0.1.0)
    - ERROR | [iOS] The `source_files` pattern did not match any file.

Analyzed 1 podspec.

[!] The spec did not pass validation, due to 1 error.

編集2:

私のプロジェクト構造からスクリーンショットを追加しました: ここに画像の説明を入力

編集3:

ディスク上の私のプロジェクトの構造からスクリーンショットを追加しました。構造体はpod lib create SHMultipleSelectコマンド を使用して作成されますここに画像の説明を入力

4

1 に答える 1