-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathSwiftyOnboard.podspec
18 lines (16 loc) · 1.03 KB
/
SwiftyOnboard.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "SwiftyOnboard"
s.version = "1.4.0"
s.summary = "A framework that allows developers to create onboarding experiences."
s.description = <<-DESC
SwiftyOnboard makes it easy to add onboarding to any iOS application. SwiftyOnboard handles all of the logic behind the pagination of views, which allows you to quickly add a highly customizable onboarding to your app, all in a lightweight framework.
DESC
s.homepage = "https://github.com/juanpablofernandez/SwiftyOnboard"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Juan Pablo Fernandez"
s.social_media_url = "https://github.com/juanpablofernandez"
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source = { :git => "https://github.com/juanpablofernandez/SwiftyOnboard.git", :tag => "#{s.version}" }
s.source_files = "SwiftyOnboard", "SwiftyOnboard/**/*.{swift}"
end