Skip to content

Instantly share code, notes, and snippets.

@STAR-ZERO
Last active December 14, 2015 00:49
Show Gist options
  • Select an option

  • Save STAR-ZERO/5001757 to your computer and use it in GitHub Desktop.

Select an option

Save STAR-ZERO/5001757 to your computer and use it in GitHub Desktop.
自分用のpodspec

自分用podspec

公式リポジトリのほうに無い時にここに追加

Podfileには

pod 'hogehoge', :podspec => 'https://gist.github.com/STAR-ZERO/xxxxxxx/raw/xxxxxxxxxxxxxxxxx/hogehoge.podspec'

のように追加する

Pod::Spec.new do |s|
s.name = 'FPPopover'
s.version = '1.3'
s.license = 'MIT'
s.platform = :ios
s.summary = 'Alternative to the native iOS UIPopoverController, with iPhone support and look and feel customization.'
s.description = 'Provides an alternative to the native iOS UIPopoverController, adding support for iPhone and additional opportunities to customize the look and feel of the popovers.'
s.homepage = 'https://github.com/50pixels/FPPopover'
s.author = { 'Alvise Susmel' => 'alvise@50pixels.com' }
s.source = { :git => 'https://github.com/50pixels/FPPopover.git', :commit => '4d6e28452aa5b0a3d7080a8770b55a760be9f57b' }
s.source_files = '*.{h,m}'
s.frameworks = 'QuartzCore', 'UIKit'
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment