forked from Richard-Gist/actions-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ActionTesting.podspec
25 lines (20 loc) · 1.01 KB
/
ActionTesting.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
Pod::Spec.new do |s|
s.name = 'ActionTesting'
s.version = '1.27.0'
s.summary = 'Workflows that work, yo (blame Richard for this name)'
s.description = <<-DESC
iOS has a linear paradigm for navigation that doesn't support a lot of flexibility. This library attempts to create a dynamic way to define your workflows in code allowing for easy reording.
DESC
s.homepage = 'https://github.com/Tyler-Keith-Thompson/Workflow'
s.license = { :type => 'Custom', :file => 'LICENSE' }
s.author = { 'Tyler.Thompson' => '[email protected]' }
s.source = { :git => 'https://github.com/Tyler-Keith-Thompson/Workflow.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.module_name = 'ActionTesting'
s.subspec 'Core' do |ss|
ss.source_files = 'ActionTesting/**/*.{swift,h,m}'
end
s.pod_target_xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks"',
}
end