forked from cashapp/stagehand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStagehand.podspec
23 lines (18 loc) · 862 Bytes
/
Stagehand.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'Stagehand'
s.version = '2.1.0'
s.summary = 'Modern, type-safe API for building animations on iOS'
s.homepage = 'https://github.com/CashApp/Stagehand'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = 'Square'
s.source = { :git => 'https://github.com/CashApp/Stagehand.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_version = '5.0.1'
s.source_files = 'Sources/Stagehand/**/*'
s.frameworks = 'CoreGraphics', 'UIKit'
# In order for StagehandTesting to publish correctly, we need to allow Stagehand to be accessible
# using `@testable import`. This allows StagehandTesting to build using a RELEASE config.
s.pod_target_xcconfig = {
'ENABLE_TESTABILITY' => 'YES'
}
end