forked from restlesscode/phobos-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhobosSwiftPush.podspec
79 lines (64 loc) · 2.46 KB
/
PhobosSwiftPush.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#
# Be sure to run `pod lib lint PhobosSwiftNetwork.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
#
group = "PhobosSwift"
name = "Push"
pod_name = "#{group}#{name}"
has_public_header_files = false
has_resource_bundles = false
has_preserve_paths = true
enable_test = true
Pod::Spec.new do |s|
s.name = "#{pod_name}"
s.version = '0.1.1'
s.summary = "#{pod_name} is a basic develop-kits for all the frameworks and apps."
s.swift_version = '5.0'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/restlesscode/phobos-swift'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Restless Developer' => '[email protected]' }
s.source = { :git => 'https://github.com/restlesscode/phobos-swift.git', :tag => "#{name}-" + s.version.to_s }
s.social_media_url = 'https://twitter.com/CodesRestless'
s.ios.deployment_target = '10.0'
s.cocoapods_version = '>= 1.10.0'
s.static_framework = false
s.prefix_header_file = false
s.source_files = "#{group}/#{name}/Classes/**/*.{swift,m,h}"
if has_preserve_paths
s.preserve_paths = [
"#{group}/#{name}/README.md",
"#{group}/#{name}/CHANGELOG.md"
]
end
s.dependency 'RxSwift', '~> 6.1.0'
s.dependency 'RxCocoa', '~> 6.1.0'
s.dependency 'PhobosSwiftCore', '~> 0.1.1'
s.dependency 'PhobosSwiftLog', '~> 0.1.1'
if has_resource_bundles
s.resource_bundles = {
"#{pod_name}" => ["#{group}/#{name}/Assets/**/*"]
}
end
if has_public_header_files
s.public_header_files = "#{group}/#{name}/Classes/**/*.h"
end
if enable_test
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = "#{group}/#{name}/Tests/**/*.{swift,h,m}"
test_spec.dependency 'Quick'
test_spec.dependency 'Nimble'
end
end
end