-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLuminousX.podspec
More file actions
47 lines (33 loc) · 1.39 KB
/
LuminousX.podspec
File metadata and controls
47 lines (33 loc) · 1.39 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
Pod::Spec.new do |spec|
spec.name = "LuminousX"
spec.version = "1.2.1"
spec.summary = "LuminousX is just a simple CoreFoundationKit utility Module"
spec.description = <<-DESC
This module contains the utility class to identify the device type
DESC
spec.homepage = "https://github.com/prashantLalShrestha/LuminousX"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = {
"Prashant Shrestha" => "prashantlurvs@gmail.com"
}
# spec.social_media_url = "https://twitter.com/Prashant Shrestha"
spec.ios.deployment_target = '11.0'
# spec.source = { :git => '' }
spec.source = {
:git => "https://github.com/prashantLalShrestha/LuminousX.git", :tag => spec.version.to_s
}
spec.source_files = 'Sources/*.{swift}'
# spec.exclude_files = "CoreDeviceKit/Exclude"
spec.swift_version = "5.0"
# spec.public_header_files = "CoreDeviceKit/**/*.h"
# spec.resource = "icon.png"po
# spec.resources = "Resources/*.png"
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
spec.frameworks = "UIKit", "Foundation"
# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"
# spec.requires_arc = true
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
spec.dependency "DeviceX", "~> 1.1.3"
end