-
Notifications
You must be signed in to change notification settings - Fork 9
/
PBTutorialManager.podspec
29 lines (24 loc) · 1.46 KB
/
PBTutorialManager.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |s|
s.platform = :ios
s.name = "PBTutorialManager"
s.version = "1.1.0"
s.summary = "An easy way to manipulate view targets to create tutorial in your app."
s.description = <<-DESC
This library has been created to create a tutorial in-app for your app. It uses targets view and you can play with these.
DESC
s.homepage = "https://github.com/paul1893/PBTutorialManager"
s.screenshots = "https://raw.githubusercontent.com/paul1893/PBTutorialManager/master/Screenshots/demo.gif"
s.author = { "paul1893" => "pspol@hotmail.fr" }
s.license = '{ :type => "MIT", :file => "license" }'
s.social_media_url = "https://github.com/paul1893"
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/paul1893/PBTutorialManager.git", :tag => s.version }
s.source_files = "PBTutorialManager/PBTutorialManager/lib/**/*.swift"
s.exclude_files = "PBTutorialManager/PBTutorialManager/Assets.xcassets/**/*", "PBTutorialManager/PBTutorialManager/Example/**/*", "PBTutorialManager/PBTutorialManager/AppDelegate.swift", "PBTutorialManager/PBTutorialManager/Base.lproj/**/*"
s.resource_bundles = { 'PBTutorialManager' => ['PBTutorialManager/PBTutorialManager/Ressources/*.otf'] }
s.frameworks = "UIKit", "Foundation"
s.dependency 'AFCurvedArrowView'
s.requires_arc = true
s.swift_version = '5.0'
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
end