-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFlexaLoad.podspec
More file actions
29 lines (23 loc) · 982 Bytes
/
FlexaLoad.podspec
File metadata and controls
29 lines (23 loc) · 982 Bytes
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.name = "FlexaLoad"
s.version = "1.1.4"
s.summary = "FlexaLoad"
s.description = "FlexaLoad module by Flexa"
s.homepage = "https://github.com/flexa/flexa-ios"
s.authors = "Flexa Network Inc.F <developers@flexa.network> (https://developer.flexa.network)"
s.license = { :type => 'MIT' }
s.module_name = "FlexaLoad"
s.platform = :ios
s.swift_version = "5.1"
s.ios.deployment_target = '16.0'
s.source = { :git => "https://github.com/flexa/flexa-ios", :tag => s.version }
s.source_files = 'FlexaLoad/Sources/**/*.{swift}'
s.pod_target_xcconfig = { 'PRODUCT_BUNDLE_IDENTIFIER': 'com.flexa.FlexaLoad' }
s.dependency 'FlexaCore', "~> #{s.version}"
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'FlexaLoad/Tests/**/*.{swift}'
test_spec.dependency 'Nimble', '~> 13.2.0'
test_spec.dependency 'Quick', '~> 7.0.0'
test_spec.dependency 'Fakery', '~> 5.1.0'
end
end