-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStickyDots.podspec
More file actions
21 lines (16 loc) · 939 Bytes
/
StickyDots.podspec
File metadata and controls
21 lines (16 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'StickyDots'
s.version = '1.0.0'
s.summary = 'A page indicator with a little bit of style'
s.swift_versions = ["4.0", "4.2", "5.0", "5.1"]
s.framework = "UIKit"
s.platform = :ios, "10.0"
s.description = <<-DESC
StickyDots is a page indicator that looks like the vanilla iOS page indicator, but adds a cool animation when you scroll. Attach it to a UIScrollView of your choice and it will automatically configure itself to display the correct information.
DESC
s.homepage = 'https://github.com/bd452/StickyDots'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Bryce Dougherty' => 'bryce.dougherty@gmail.com' }
s.source = { :git => 'https://github.com/bd452/StickyDots.git', :tag => s.version.to_s }
s.source_files = 'StickyDots/*.swift'
end