-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSSImageKit.podspec
More file actions
47 lines (39 loc) · 2.01 KB
/
SSImageKit.podspec
File metadata and controls
47 lines (39 loc) · 2.01 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Be sure to run `pod lib lint SSImageKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SSImageKit'
s.version = '1.0.0'
s.summary = 'Comprehensive image editing toolkit for SwiftUI apps.'
s.description = <<-DESC
Unleash the full visual potential of your SwiftUI apps with SSImageKit, a comprehensive image editing toolkit designed for seamless integration. Its powerful engine delivers real-time, non-destructive editing through a suite of customizable UI components, empowering you to effortlessly craft stunning visuals with intuitive controls and boundless creative freedom.
DESC
s.homepage = 'https://github.com/SimformSolutionsPvtLtd/SSImageKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Krunal Patel' => '[email protected]' }
s.source = { :git => 'https://github.com/SimformSolutionsPvtLtd/SSImageKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '16.0'
s.osx.deployment_target = '13.0'
s.swift_versions = ['5.9']
# Default subspec - includes both Engine and UI
s.default_subspecs = ['Engine', 'UI']
# Core Engine subspec - can be used standalone
s.subspec 'Engine' do |engine|
engine.source_files = 'Sources/SSImageKitEngine/**/*.{swift}'
engine.resource_bundles = {
'SSImageKitEngine' => ['Sources/SSImageKitEngine/Resources/**/*']
}
end
# UI Components subspec - internal use only, included in default
s.subspec 'UI' do |ui|
ui.source_files = 'Sources/SSImageKitUI/**/*.{swift}'
ui.resource_bundles = {
'SSImageKitUI' => ['Sources/SSImageKitUI/Resources/**/*']
}
ui.dependency 'SSImageKit/Engine'
end
end