This repository was archived by the owner on Jan 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOrangeFramework.podspec
More file actions
64 lines (56 loc) · 2.31 KB
/
OrangeFramework.podspec
File metadata and controls
64 lines (56 loc) · 2.31 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
# Be sure to run `pod lib lint OrangeFramework.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = "OrangeFramework"
s.version = "1.2.1"
s.summary = "Powerful framework aimed at fast and high quality developing mobile apps on Objective-C and Swift."
s.description = <<-DESC
OrangeFramework is a collection of components for fast and high quality developing mobile apps on Objective-C and Swift.
It includes a light-weight iOC container, component for detecting running device, powerful extensions and useful segues.
DESC
s.homepage = "https://github.com/kuler90/OrangeFramework"
s.license = 'MIT'
s.author = { "Roman Kulesha" => "kulesha.r@gmail.com" }
s.source = { :git => "https://github.com/kuler90/OrangeFramework.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.xcconfig = { 'SWIFT_INSTALL_OBJC_HEADER' => 'NO', 'EMBEDDED_CONTENT_CONTAINS_SWIFT' => 'NO' }
s.subspec 'Dependency' do |ss|
ss.source_files = 'Source/Dependency/**/*.{swift,h,m}'
end
s.subspec 'Device' do |ss|
ss.source_files = 'Source/Device/**/*.{swift,h,m}'
end
s.subspec 'Extensions' do |ss|
ss.source_files = 'Source/Extensions/Core/*.{swift,h,m}'
ss.subspec 'Array' do |sss|
sss.source_files = 'Source/Extensions/Core/Array/*.{swift,h,m}'
end
ss.subspec 'Date' do |sss|
sss.source_files = 'Source/Extensions/Core/Date/*.{swift,h,m}'
end
ss.subspec 'Error' do |sss|
sss.source_files = 'Source/Extensions/Core/Error/*.{swift,h,m}'
end
ss.subspec 'GCD' do |sss|
sss.source_files = 'Source/Extensions/Core/GCD/*.{swift,h,m}'
end
ss.subspec 'Localization' do |sss|
sss.source_files = 'Source/Extensions/Core/Localization/*.{swift,h,m}'
end
ss.subspec 'Log' do |sss|
sss.source_files = 'Source/Extensions/Core/Log/*.{swift,h,m}'
end
ss.subspec 'String' do |sss|
sss.source_files = 'Source/Extensions/Core/String/*.{swift,h,m}'
end
ss.subspec 'UI' do |sss|
sss.source_files = 'Source/Extensions/UI/*.{swift,h,m}'
end
end
s.subspec 'Segues' do |ss|
ss.source_files = 'Source/Segues/**/*.{swift,h,m}'
end
end