-
Notifications
You must be signed in to change notification settings - Fork 2
/
SlideKit.podspec
22 lines (16 loc) · 975 Bytes
/
SlideKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
Pod::Spec.new do |s|
s.name = "SlideKit"
s.version = `git describe --tags --abbrev=0`
s.summary = "Soulfully slidey UINavigationController transitions"
s.description = "Quickly and easily create onboarding flows with a background image or transparent top and bottom bars based on simple UINavigationController semantics"
s.author = "Kyler Jensen"
s.homepage = "https://github.com/Kjens93/SlideKit"
s.screenshots = "https://user-images.githubusercontent.com/15389109/42902178-00605a04-8a8b-11e8-900e-d13efd090e32.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.source = { :git => "#{s.homepage}.git", :tag => s.version }
s.source_files = "SlideKit/**/*.{h,m,swift}"
s.platform = :ios, "10.0"
s.swift_version = "5.0"
s.frameworks = "UIKit"
end