-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathActivityRings.podspec
More file actions
32 lines (26 loc) · 1.63 KB
/
ActivityRings.podspec
File metadata and controls
32 lines (26 loc) · 1.63 KB
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
30
31
32
Pod::Spec.new do |spec|
spec.name = 'ActivityRings'
spec.version = '2.0.1'
spec.summary = 'An attempt to recreate the ring controls in Apple’s Activity app'
spec.description = <<-DESC
ActivityRings is an attempt to recreate the ring controls used in Apple’s iOS and watchOS Activity app
DESC
spec.homepage = 'https://github.com/HarshilShah/ActivityRings'
spec.license = { type: 'MIT', file: 'LICENSE.md' }
spec.author = { 'Harshil Shah' => 'harshilshah1910@me.com' }
spec.social_media_url = 'https://twitter.com/HarshilShah1910'
spec.source = { git: 'https://github.com/HarshilShah/ActivityRings.git', tag: spec.version.to_s }
spec.frameworks = 'SpriteKit'
spec.source_files = 'Sources/Shared/**/*.swift', 'Sources/Supporting\ Files/ActivityRings.h'
spec.ios.source_files = 'Sources/iOS/**/*.swift'
spec.osx.source_files = 'Sources/macOS/**/*.swift'
spec.tvos.source_files = 'Sources/iOS/**/*.swift'
spec.watchos.source_files = 'Sources/iOS/**/*.swift', 'Sources/watchOS/**/*.swift'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'
spec.watchos.deployment_target = '4.0'
spec.ios.pod_target_xcconfig = { 'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => 'SKVIEW_AVAILABLE $(inherited)' }
spec.osx.pod_target_xcconfig = { 'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => 'SKVIEW_AVAILABLE $(inherited)' }
spec.tvos.pod_target_xcconfig = { 'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => 'SKVIEW_AVAILABLE $(inherited)' }
end