0
私は最初のCocoaPodを作成して公開しました。ウェブサイトでは検索して見つけることができますが、私は展開できません。拡張ボタンの代わりに、私は3つのボタンがあります - サイト、ドキュメント、および仕様。リンクをクリックすると、Cocoapods.org内のドキュメントページではなく、Githubページに直接移動します。ここでCocoaPodsのウェブサイトでCocoapodを展開できません
私podspecファイルです:
Pod::Spec.new do |s|
s.name = 'SpinWheelControl'
s.version = '0.1.1'
s.summary = 'An inertial spinning wheel UI control that allows selection of an item.'
s.description = <<-DESC
'Spin Wheel Control is a wheel of fortune-style inertial spinning wheel UI control that allows selection of an item. It is written in the Swift programming language and to be used in iOS apps. The code is a Swift derivation, port, and enhancement based loosely on the Objective-C SMWheelControl CocoaPod written by Cesare Rocchi and Simone Civetta found at https://cocoapods.org/pods/SMWheelControl.'
DESC
s.homepage = 'https://github.com/joshdhenry/SpinWheelControl'
s.license = 'BSD 3-Clause'
s.author = { 'Josh Henry' => '[email protected]' }
s.source = { :git => 'https://github.com/joshdhenry/SpinWheelControl.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.3'
s.source_files = 'SpinWheelControl/*.{swift,h,m}'
end
私はこのthisガイドに続き、さえ改訂podspecで新しいバージョンをアップロードしようとしたが、私はまだこの問題を抱えていました。 Cocoapodをクリックすると、Githubページではなくドキュメンテーションページに移動します。