forked from ephread/Instructions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstructionsAppExtensions.podspec
More file actions
20 lines (17 loc) · 927 Bytes
/
InstructionsAppExtensions.podspec
File metadata and controls
20 lines (17 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.cocoapods_version = '>= 1.0'
spec.name = "InstructionsAppExtensions"
spec.version = "1.4.0"
spec.summary = "[App Extensions Version] Create walkthroughs and guided tours (with coach marks) in a simple way, using Swift."
spec.homepage = "https://github.com/ephread/Instructions"
spec.license = 'MIT'
spec.author = { "Frédéric Maquin" => "fred@ephread.com" }
spec.source = { :git => "https://github.com/ephread/Instructions.git", :tag => spec.version.to_s }
spec.swift_version = '5.0'
spec.platform = :ios, '10.0'
spec.requires_arc = true
spec.source_files = 'Instructions', 'Sources/**/*.swift'
spec.exclude_files = '**/*+Regular.swift'
spec.resources = ["Sources/**/*.xcassets"]
spec.pod_target_xcconfig = {'OTHER_SWIFT_FLAGS' => '-DINSTRUCTIONS_APP_EXTENSIONS'}
end