-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDevOptions.podspec
30 lines (25 loc) · 1.45 KB
/
DevOptions.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
26
27
28
29
30
Pod::Spec.new do |s|
s.name = 'DevOptions'
s.version = '0.4.2'
s.summary = 'Allows you to activate developper options.'
s.swift_version = '5.0'
s.description = <<-DESC
Allows you to activate developper options such as: Changing the application language at runtime or letting you see your non localized key; Changing the server base url, allowing you to switch from the development environment to the production environment in a simple click; Showing a tag for the UIViewController you are currently looking at.
DESC
s.homepage = 'https://github.com/NomadeSolutions/DevOptions'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Nomade Solutions Mobiles' => '[email protected]' }
s.source = { :git => 'https://github.com/NomadeSolutions/DevOptions.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'DevOptions/Classes/**/**/*.{h,m,swift}'
s.project_header_files = 'DevOptions/Classes/**/*.h'
s.preserve_paths = 'DevOptions/Classes/Module/*.modulemap'
s.pod_target_xcconfig = {'SWIFT_INCLUDE_PATHS' => '$(PODS_TARGET_SRCROOT)/DevOptions/Classes/Module'}
s.resource_bundles = {
'DevOptions' => ['DevOptions/Assets/**/*.{xcassets,strings}']
}
s.frameworks = 'UIKit', 'SafariServices'
s.dependency 'TRZSlideLicenseViewController'
s.dependency 'Toast-Swift'
s.dependency 'SnapKit'
end