-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFPScrollingBanner.podspec
More file actions
23 lines (17 loc) · 939 Bytes
/
FPScrollingBanner.podspec
File metadata and controls
23 lines (17 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "FPScrollingBanner"
s.version = "1.0.0"
s.summary = "This Objective-C control implements Scrolling Inset Banner appearance for tvOS apps"
s.description = <<-DESC
FPScrollingBanner allows to easily recreate Scrolling Inset Banner appearance like on new AppleTV dashboard. It's based on UICollectionView and tweaks Focusing System to create infinitive scrolling experience.
DESC
s.homepage = "https://github.com/Ponf/FPScrollingBanner"
s.license = 'MIT'
s.author = { "Filipp" => "me@ponfius.com" }
s.source = { :git => "https://github.com/Ponf/FPScrollingBanner.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ponfius'
s.platform = :tvos, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit'
end