14 lines
669 B
Ruby
14 lines
669 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'JCNotificationBannerPresenter'
|
|
s.platform = :ios
|
|
s.version = '0.9.0'
|
|
s.summary = 'A library for generic presentation of "banners" (e.g. to present a push notification) from anywhere inside an iOS app.'
|
|
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
|
|
s.homepage = 'https://github.com/jcoleman/JCNotificationBannerPresenter'
|
|
s.author = { 'James Coleman' => 'jtc331@gmail.com' }
|
|
s.requires_arc = true
|
|
s.framework = 'QuartzCore'
|
|
s.source = { :git => 'https://github.com/jcoleman/JCNotificationBannerPresenter.git', :tag => '0.9.0' }
|
|
s.source_files = '**/*.{h,m}'
|
|
end
|