2017-05-16 14 views
0

私は最初のCocoaPodを作成して公開しました。ウェブサイトでは検索して見つけることができますが、私は展開できません。拡張ボタンの代わりに、私は3つのボタンがあります - サイト、ドキュメント、および仕様。リンクをクリックすると、Cocoapods.org内のドキュメントページではなく、Githubページに直接移動します。ここでCocoaPodsのウェブサイトでCocoapodを展開できません

enter image description here

私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ページではなくドキュメンテーションページに移動します。

答えて

0

約5日後、[拡張]オプションが表示され、CocoaDocsが生成されました。私はこれが私が作った変更のせいではないと思っています。むしろ、Cocoapods.orgのサーバー上で更新されたもののためだと思います。今すぐ素晴らしい作品!

関連する問題